error แบบนี้แก้ไงครับ 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 = '' , tel = '' , work_add = '' , work_tel = '' , ' at line 10
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 = '' , tel = '' , work_add = '' , work_tel = '' , ' at line 10
มันแจ้งแบบนี้ผมควรแก้ไงครับ ไม่รู้ว่ามัน error ตรงไหนจริง ๆ
นี้คือ code หน้าบันทึก
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include "conn.php";
$id_member = $_POST['idm'];
$id_advice = $_POST['ida'];
$name_advice = $_POST['na'];
$date_register = $_POST['dr'];
$fname = $_POST['fname'];
$lname = $_POST['lname'];
$nickname = $_POST['nickname'];
$bdm = $_POST['bda'];
$bmm = $_POST['bm'];
$bym = $_POST['by'];
$add = $_POST['add'];
$tel = $_POST['tel'];
$work_add = $_POST['work'];
$work_tel = $_POST['work_tel'];
$con_add = $_POST['add_con'];
$blood = $_POST['blood'];
$skin = $_POST['skin'];
$facea = $_POST['facea'];
$faceb = $_POST['faceb'];
$hair = $_POST['hair'];
$note = $_POST['note'];
$height = $_POST['height'];
$weight = $_POST['weight'];
$problem = $_POST['problem'];
$treat = $_POST['treat'];
$treat_when = $_POST['treat_when'];
$cosmetic = $_POST['cosmetic'];
$type = $_POST['type'];
$makeup = $_POST['makeup'];
$birthday = "$bym-$bmm-$bdm";
$sql = "update member_profile set
id_member = '$id_member' ,
id_advice = '$id_advice' ,
name_advice = '$name_advice' ,
date_register = '$date_register' ,
fname = '$fname' ,
lname = '$lname' ,
nickname = '$nickname' ,
birthday = '$birthday' ,
add = '$add' ,
tel = '$tel' ,
work_add = '$work_add' ,
work_tel = '$work_tel' ,
con_add = '$con_add' ,
blood = '$blood' ,
skin = '$skin' ,
facea = '$facea' ,
faceb = '$faceb' ,
hair = '$hair' ,
note = '$note' ,
height = '$height' ,
weight = '$weight' ,
problem = '$problem' ,
treat = '$treat' ,
treat_when = '$treat_when' ,
cosmetic = '$cosmetic' ,
type = '$type' ,
makeup = '$makeup' where id_member = '$id_member' ";
$query = mysql_query($sql) or die(mysql_error());
echo "<script>alert('แก้ไขข้อมูลเรียบร้อย');window.location='index_center.php';</script>";
mysql_close();
?>
Tag : PHP
Date :
2011-04-21 09:39:11
By :
excerberia
View :
794
Reply :
3
ลอง echo $sql; แล้วเอาคำสั่ง sql ไปรันดูครับ ว่ามัน error ว่าไงอีก
ใช้ php / mysql เวอร์ชั่นอะไรครับ
Date :
2011-04-21 09:55:08
By :
avsqlz
ทำตามที่คุณ avsqlz บอก แล้วผมแนะนำเพิ่มเติมนิดนึง
Code (PHP)
mysql_query($sql) or die(mysql_error()."<br>SQL: $sql"); //น่าจะใส่แบบนี้ไว้แก้บักจะได้รู้ว่าคำสั่ง sql เราพลาดอะไรไป พอเราคิดว่ามันสมบูรณ์แล้วก็ไม่ต้องโชว์ sql เมื่อเกิด error ก็ได้
Date :
2011-04-21 11:42:30
By :
chineji
ขอบคุณมากครับตอนนี้แก้ได้แล้วมันมาจาก
ตรงนี้ครับ ==><input name="add" type="text" id="add" value="<?=$add?>" size="100" maxlength="<?=$add?> " /> สงสัยผมคงจะไล่ใส่ค่า value มันไปหน่อยเลยต้องมาเศร้าแบบนี้
ต้องเป็นแบบนี้ครับ ==> <input name="add" type="text" id="add" value="<?=$add?>" size="100" maxlength="100" />
Date :
2011-04-21 13:03:51
By :
excerberia
Load balance : Server 02