|
|
|
เพิ่มข้อมูล ลง Database ตอนสั่งซื้อสินค้า(ตระกร้าสินค้า) ไม่ได้ ใครทราบรบกวนเเนะนำทีคะ |
|
|
|
|
|
|
|
Code (PHP)
<?
session_start();
$name=$_POST[name];
$email=$_POST[email];
$tel=$_POST[tel];
$address=$_POST[address];
$total_order=$_POST[total_order];
if ($name=="") {
echo"<h3>ERROR : กรุณากรอกชื่อ - สกุลด้วยค่ะ</h3>";
exit();
}
else if ($address=="") {
echo"<h3>ERROR: กรุณากรอก ที่อยู่ด้วยค่ะ </h3>";
exit();
}
$datenow=date("Y-m-d");
include "config.php";
echo "($name,'$email','$tel','$address','$total_order','$datenow)";
$sql="insert into orders values(null,'$name','$email','$tel','$address','$total_order','$datenow')";
mysql_db_query($dbname,$sql);
$sql2="select max(id_order) from order ";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
for ($i=0;$i<count($sess_id);$i++) {
$sql3="insert into order_detail values('$row[0]','$sess_id[$i]','$sess_num[$i]','$sess_price[$i]')";
mysql_db_query($dbname,$sql3);
}
session_unregister("sess_id");
session_unregister("sess_name");
session_unregister("sess_price");
session_unregister("sess_num");
echo "<h3>รายการสั่งซื้อของท่านถูกบันทึกเรียบร้อยแล้วค่ะ
<br> ขอขอบคุณที่ไว้วางใจ ทางเราจะรีบจัดส่งสินค้าให้ทันทีค่ะ </h3>";
mysql_close();
?>
//<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
//<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
อันนี้ คือตัวอย่าง โคดใบสั่งซื้อที่ error คะ
|
|
|
|
|
Date :
2012-02-15 15:28:43 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้คือภาพ ตอนที่ทำการสั่งซื้อคะ
มันขึ้นว่า บันทึกเรียบร้อย เเต่ว่าไม่ลงในฐานข้อมูล เเป็นเฉพาะ ตาราง Order อะคะ เเต่ว่า ตาราง order detail ลงปกติ
|
|
|
|
|
Date :
2012-02-15 15:38:42 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำว่า order เป็นคำสงวนครับ ให้ใช้คำอื่นครับ
Code (PHP)
$sql2="select max(id_order) from order ";
Go to : SQL MYSQL RESERVED WORDS
|
|
|
|
|
Date :
2012-02-15 15:43:37 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ภาพ ตาราง order detail คะ
|
|
|
|
|
Date :
2012-02-15 15:44:29 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคะ เดี่ยวลองนั่งไล่แก้ ก่อนนะคะ
|
|
|
|
|
Date :
2012-02-15 15:48:28 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แกตั้งนานทำได้แร้วค่ะ ขอบคุณมากๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆ เรยค่ะ เป็นเพราะชื่อตารางตรงกับคำสงวนจริงๆด้วยค่ะ
|
|
|
|
|
Date :
2012-02-15 16:00:28 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|