มีปัญหาเรื่องการ update ข้อมูลครับ update แล้วมัน error ช่วยทีครับ
ตามภาพครับคือตัวอัพเดทอื่น ๆ ก็ไม่มีปัญหานะครับ (ไม่กี่ฟิล) แต่พอมาเจอฟิลเยอะๆ แล้วมันไปไม่เป็นเลยไม่รู้ว่าติดตรงไหน
เรื่องตัวแปรต่าง ๆ ผมดึงมาถูกแล้วนะ ใครพอช่วยได้บ้างครับ
//นี้เป็น code save ข้อมูล//
<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'];
$bd = $_POST['bd'];
$bm = $_POST['bm'];
$by = $_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 = "$by-$bm-$bd";
$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("error=$sql");
echo "<script>alert('แก้ไขข้อมูลเรียบร้อย');window.location='index_center.php';</script>";
mysql_close();
?>
//นี้เป็น DB ครับ//
ใครพอช่วยได้มั้งครับTag : PHP
Date :
2011-04-20 13:30:37
By :
excerberia
View :
630
Reply :
3
ลอง echo error แบบนี้ดีกว่าครับ
Code (PHP)
or die(mysql_error());
Date :
2011-04-20 13:33:25
By :
chubichane
จะได้รู้ว่า syntax SQL ส่วนไหนที่มีข้อผิดพลาด
Date :
2011-04-20 13:34:11
By :
chubichane
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 = 'sdfsdfsdf' , tel = '' , work_add = '' , work_tel = '' at line 10
มันแจ้งเช่นนี้ผมก็ดูแล้ว มันดูไม่ออกจริง ๆ ว่า เอ๋อเหรอ ตรงไหน
แต่ก็ขอบคุณเรื่อง or die(mysql_error()); ความรู้ใหม่ครับ
Date :
2011-04-20 13:42:18
By :
excerberia
Load balance : Server 00