mysql_query($sql) or die(mysql_error());
เปลี่ยนเป็น
mysql_query($sql) or die(mysql_error() . "<br />" . $sql);
จะได้รู้ว่าตัวไหนผิด
Date :
2011-02-19 13:19:52
By :
PlaKriM
No. 14
Guest
พอใสเข้าไปแล้วมันก้อฟ้องขึ้นอีกอ่าคราบ ฟ้องว่า...
Code
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
INSERT INTO `order` (shipping_address, date, member_id) VALUES('rrrrr', NOW(), )
$sql = "SELECT * FROM member WHERE username='$username'";
$result = mysql_query($sql) or die(mysql_error());
$row = mysql_fetch_array($result);
$member_id = $row["id"];
ก็ต้องมาดูตรงนี้ค่ะว่ามันได้ค่ามาหรือเปล่า
Date :
2011-02-22 11:16:24
By :
ultrasiam
No. 19
Guest
ตอนแรกที่ทำมาก้อเข้าได้ปกตินะคราบบ พอผ่านไปอีกวันมันก้อฟ้องคำสั่งนี้
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
พอเปลียนมาใสตัวนี้
1.mysql_query($sql) or die(mysql_error());
2.เปลี่ยนเป็น
3.mysql_query($sql) or die(mysql_error() . "<br />" . $sql);
มันก้อฟ้องแบบนี้คราบบบ
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
INSERT INTO `order` (shipping_address, date, member_id) VALUES('rrrrr', NOW(), )
ก้อเลยไม่รู้ว่าจะไปหาค่าของ $member_id ได้ที่ไหนอ่าคราบบ
Date :
2011-03-02 13:59:35
By :
krisnan burapat
No. 20
Guest
Code
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where username = 'NATE' and password = '1141'' at line 1