|
|
|
สอบถามปัญหาการดึงข้อมูล2ตารางมาINSERTลงอีกฐานข้อมูลคะ PHP MySQL |
|
|
|
|
|
|
|
ต้องการดึง ทั้ง2ตารางมาโชว์ แล้วทำการเก็บค่าเข้าอีกตารางคะ
ตอนนี้ดึง2ตารางออกมาโชว์ได้แล้ว
แต่ตอนเก็บข้อมูลมีปัญหาคะ รบกวนพี่ๆช่วยดูให้ทีคะ
หน้านี้ดึงโค้ดมา จาก2ตาราง
Code (PHP)
<?php
session_start();
if($_SESSION['ad_user'] == "")
{
echo "Please Login!";
exit();
}
if($_SESSION['status'] != "USER")
{
echo "This page for Admin only!";
exit();
}
?>
<html>
<head>
<title>เพิ่มคอร์สเรียน</title>
<meta http-equiv=Content-Type content="text/html; charset=tis-620">
</head>
<body>
คอร์สที่ทำการจอง
<form id="form1" name="form1" method="post" action="add_order.php?cou_id=<?php echo $_GET["cou_id"];?>">
<?php
mysql_connect("localhost","root","0404");
mysql_select_db("veeglassv1");
$strSQL = "SELECT * FROM data_course WHERE cou_id = '".$_GET['cou_id']."' ";
mysql_query("SET NAMES TIS620"); // set กำหนดมาตราฐา
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<table width="400" height="162" border="1">
<tr>
<td width="123">รหัสหัวข้อ</td>
<td width="261">
<input name="txtcou_id" readonly="readonly" id="txtcou_id" type="text" value="<?php echo $objResult["cou_id"];?>">
</td>
</tr>
<tr>
<td width="123">หัวข้อ</td>
<td width="261"><?php echo $objResult["cou_name"];?></td>
</tr>
<tr>
<td width="123">วันที่เริ่ม</td>
<td width="261"><?php echo $objResult["cou_start"];?></td>
</tr>
<tr>
<td width="123">วันที่สิ้นสุด</td>
<td width="261"><?php echo $objResult["cou_end"];?></td>
</tr>
<tr>
<td width="123">ราคา</td>
<td width="261"><?php echo $objResult["cou_baht"];?></td>
</tr>
</table>
<?php
$strSQL = "SELECT * FROM user_admin WHERE ad_user = '".$_SESSION['ad_user']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
ข้อมูลผู้จอง
<table width="400" height="162" border="1">
<tr>
<td width="123">username</td>
<td width="261"><?php echo $objResult["ad_user"];?></td>
</tr>
<tr>
<td width="123">name</td>
<td width="261"><?php echo $objResult["ad_name"];?></td>
</tr>
<tr>
<td colspan="2" align="center">กรุณากรอกข้อมูลตามความจริง</td>
</tr>
<tr>
<td colspan="2" align="center" ><input type="submit" name="Submit" value="Save"></td>
</tr>
</table>
</form>
<?php
mysql_close;
?>
</body>
</html>
กดยืนยัน เพื่อเพิ่มลงอีกตาราง
Code (PHP)
<?php
session_start();
if($_SESSION['ad_user'] == "")
{
echo "Please Login!";
exit();
}
if($_SESSION['status'] != "USER")
{
echo "This page for Admin only!";
exit();
}
mysql_connect("localhost","root","0404");
mysql_query("SET NAMES TIS620"); // set กำหนดมาตรา
mysql_select_db("veeglassv1");
$strSQL = "INSERT INTO status_course";
$strSQL .="(status_cou_id,status_ad_id,status_book,status_date)";
$strSQL .="VALUES ";
$strSQL .="('".$POST["txtcou_id"]."','".$_SESSION["ad_user"]."','".$_POST["status_book"]." ','รอการยืนยัน' ";
$strSQL .=",'".date("Y-m-d H:i:s")."')";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
echo "<br> Go to <a href='view_user_course.php'>กลับหน้าแรก</a>";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close();
?>
[php]
พอกดsave แล้วเป็นแบบนี้อะคะ
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2016-04-07 01:22:52 2016-04-07 01:22:53
|
|
|
|
|
Date :
2016-04-07 01:21:10 |
By :
Nitar |
View :
905 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวแปรไม่เท่ากัน
$strSQL .="(status_cou_id,status_ad_id,status_book,status_date)"; //อันนี้มี 4
//สองอันล่างรวมกันได้ 5
$strSQL .="('".$POST["txtcou_id"]."','".$_SESSION["ad_user"]."','".$_POST["status_book"]." ','รอการยืนยัน' ";
$strSQL .=",'".date("Y-m-d H:i:s")."')";
เสริมว่า ตรงตัวแปร 'รอการยืนยัน' เก็บเป็นตัวอักษร ตัวเลขแทน เช่น w = wait = รอ หรือ 0 = รอการยืนยัน , 1 = ยืนยัน จะได้สะดวกเวลาใช้งานครับ
|
|
|
|
|
Date :
2016-04-07 08:30:41 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่งั้นก็ง่าย ๆ echo cou_id; ออกมาดูก่อน INSERT ว่ามันมีค่าจริงไหม
|
|
|
|
|
Date :
2016-04-07 14:03:29 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ไขได้แล้วคะ ขอบคุณพี่ๆ TC มากๆเลยคะ
|
|
|
|
|
Date :
2016-04-07 18:36:46 |
By :
Nitar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-04-07 22:54:01 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|