 |
insert data ไม่ลงเกิดจากอะไรครับช่วยที You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax |
|
 |
|
|
 |
 |
|
มันฟ้องแบบนี้ แต่รูปภาพ เข้าโฟลเดอร์ปกติ แต่ ข้อมูลไม่เข้า ลองให้แสดงค่าที่รับมาก็แสดงครบทุกค่าปกติ ???
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 'group,detail,img) VALUES('ถังโยกสะพายหลังแบบ' at line 1
คำสั่ง insert
Code (PHP)
$sql=("INSERT INTO product(name,code,group,detail,img) VALUES('$name','$code','$group','$message','$new_images')");
mysql_query($sql) or die(mysql_error());
Tag : PHP, MySQL
|
|
 |
 |
 |
 |
Date :
2013-03-27 11:23:08 |
By :
nitsuke |
View :
814 |
Reply :
8 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ต้องมี () หน้า INSERT
|
 |
 |
 |
 |
Date :
2013-03-27 11:29:12 |
By :
teez1232002 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่หายครับ ไม่น่าจะเกี่ยว
|
 |
 |
 |
 |
Date :
2013-03-27 11:35:50 |
By :
nitsuke |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (PHP)
$sql="INSERT INTO product (name,code,group,detail,img) VALUES('$name','$code','$group','$message','$new_images')";
mysql_query($sql) or die ("ไม่สามารถเพิ่มข้อมูลได้").mysql_error();
ลองดูครับ ถ้ายังไม่ได้ก็ต้องเช็ควิธีเก็บรูปว่าเก็บยังไง
|
 |
 |
 |
 |
Date :
2013-03-27 12:21:59 |
By :
new19121 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ได้ครับ การเก็บรูปผม เก็บชื่อไว้ดาต้าเบส ส่วน รูปก็เก็บไว้ในโฟล์เดอร์ซึ่งในโฟล์เดอร์พออัพโหลดมันเข้าไปได้ปกติ ส่วนในดาต้าเบสไม่สามารถบันทึกไรได้เลย
ไม่สามารถเพิ่มข้อมูลได้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 'group,detail,img) VALUES('ถังโยกสะพายหลังแบบ' at line 1
|
 |
 |
 |
 |
Date :
2013-03-27 13:48:56 |
By :
nitsuke |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
$message ดูค่านี้หน่อยว่าส่งอะไรไป
|
 |
 |
 |
 |
Date :
2013-03-27 14:29:54 |
By :
teez1232002 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เว้นวรรค หน้า values และ หลัง อย่างละเคราะ น่าจะช่วยได้นะครับ
|
 |
 |
 |
 |
Date :
2013-03-27 16:59:44 |
By :
ไอ้หน้าหนวด |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
คำว่า group เป็น reserved word ของ mysql ครับ
ลองเปลี่ยนชื่อฟิลด์ group เป็นชื่ออื่น หรือใส่ Grave accent ( ` ) ครอบคำว่า group ก็ได้ครับ ( `group` )
อ้างอิง :
https://www.thaicreate.com/tutorial/sql-mysql-reserved-words.html
|
ประวัติการแก้ไข 2013-03-27 17:50:04 2013-03-27 17:50:30
 |
 |
 |
 |
Date :
2013-03-27 17:42:17 |
By :
BanK_z |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองให้ส่งค่ามาดูอีกที ปรากฏว่า message กะ IMG ไม่ส่งค่ามาครับ 
|
 |
 |
 |
 |
Date :
2013-03-29 13:57:23 |
By :
nitsuke |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|