HOME > PHP > PHP Forum > ช่วยทีครับ insert ข้อมูลแล้ว เป็นแบบนี้ You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
ช่วยทีครับ insert ข้อมูลแล้ว เป็นแบบนี้ You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
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 'add,mi,projector,img) VALUES ('ห้องปฏิบัติการคอ�' at line 1
Code (PHP)
<?php
include ("connect.php");
if(copy($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
//echo '<font size="+2">'."<br><br><br><center>บันทึกข้อมูลเสร็จเรียบร้อยกรุณารอซักครู่<br></center>".'</font>';
//*** Insert Record ***//
$strSQL = "INSERT INTO `bkkbooking`.`room`";
$strSQL .=" (room,num,add,mi,projector,img) VALUES ('".$_POST["txtroom"]."','".$_POST["txtnum"]."','".$_POST["txtadd"]."','".$_POST["txtmi"]."','".$_POST["txtpro"]."','".$_FILES["filUpload"]["name"]."')";
$objQuery = mysql_query($strSQL) or die(mysql_error());
}
echo $strSQL;
//echo "<META HTTP-EQUIV=\"Refresh\"CONTENT=\"2;URL=adminshow.php\">";
?>