|
|
|
ดูโค้ด update ให้หน่อยคับ อัพเดทไม่ลงฐานข้อมูล ผมต้องการอัพเดทข้อมูล ลงตาราง product ซึงประกอบด้วย |
|
|
|
|
|
|
|
อัพเดทไม่ลงฐานข้อมูล ผมต้องการอัพเดทข้อมูล ลงตาราง product ซึงประกอบด้วย
isbn title price description picture catid
ไม่ทราบว่าโค้ดผมผิดรึป่าวคับ
?>
function edit_product($oldisbn,$isbn,$title,$price,$description,$file,$catid)
{
$con=connect_db("project");
if(!$con)
{
return "ไม่สามารถติดต่อกับฐานข้อมูลได้ กรุณาพยายามอีกครั้ง";
exit;
}
$sql="update product set isbn='$isbn' ,title='$title' ,price=$price , description = '$description' , picture='$file' ,catid = $catid where isbn='$oldisbn' ";
$result = mysql_query($sql);
if(!$result)
return("ไม่สามารถเพิ่มรายการสินค้าได้");
else
return true;
}
?>
นี่เป็นตัวเรียกใช้ ในส่วนนี้ผมลองecho ค่าทุกค่าที่จะส่งไปเเล้วคับมันก็เเสดงหมดทุกตัวนะคับ
<?
if (edit_product($oldisbn,$isbn,$title,$price,$description,$file,$catid))
{
echo "<center>แก้ไขสินค้าในฐานข้อมูลเสร็จเรียบร้อยแล้ว</center>";
}
else
{
echo "<center> สินค้าไม่สามารถแก้ไขในฐานข้อมูลได้</center>";
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
17 มี.ค. 2550 16:00:32 |
By :
ช่วยดูให้หน่อยคับ |
View :
1751 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql="update product set isbn='$isbn' ,title='$title' ,price=$price , description = '$description' , picture='$file' ,catid = $catid where isbn='$oldisbn' "; <<=== นี่ไงบางอันไม่มี ' ' (price=$price , catid = $catid )
|
|
|
|
|
Date :
17 มี.ค. 2550 20:16:06 |
By :
pitupoom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|