update ลงดาต้าเบสไม่ได้ คือเมื่อ update แล้วไม่มีการเปลี่ยนกับข้อมูลแล้วก็ไม่มีการแจ้ง error ด้วยค่ะ ช่วยดู code ให้หน่อยค่ะ
1. echo $strSQL; ดูก่อนว่าค่าส่งมาครบหรือเปล่า
2. เอา $strSQL ไปรันใน phpmyadmin ถ้ามี error เอา error มาดู
Date :
2010-08-25 15:38:31
By :
heng
$objQuery = mysql_query($strSQL);
print mysql_error();
Date :
2010-08-25 15:41:11
By :
kaos
ขอบคุณค่ะ
ลองทำตามแล้วค่ะ
ไม่มี error นะคะ
Date :
2010-08-25 16:31:06
By :
nongjar
เอา $strSQL ไปรันใน phpmyadmin มันอัพเดตได้ไหม
Date :
2010-08-25 16:47:31
By :
heng
ไม่ได้ค่ะ
Date :
2010-08-25 16:54:31
By :
nongjar
ฟิวด์ FilesID เป็นฟิวด์ id ถ้าตั้งเป็น PK ไม่ควรที่จะอัพเดตนะ
เพราะถ้ามีตารางอื่นเอา FilesID เป็น FK มันจะอัพเดตไม่ได้อยู่แล้ว
หรือมีเหตุผลอะไรไหมที่จะอัพเดต
Date :
2010-08-25 17:12:30
By :
heng
เจตนาไม่ตั้งใจที่จะอัพเดต FilesID
แต่ดึงมาเพื่อว่าอัพเดตที่ id นี้ อ่ะค่ะ
เวลาที่ไม่ดึง FilesID มา ข้อมูลของคอมเม้นที่จะแก้ไขก็ไม่โชว์อ่ะค่ะ
Date :
2010-08-25 17:21:03
By :
nongjar
หมายถึงบรรทัดนี้ไม่ต้องอัพเดตอ่ะ $strSQL .="FilesID = '".$_POST["FilesID"]."' ";
Date :
2010-08-25 17:31:30
By :
heng
ลองเอาออกแล้วค่ะมันแจ้งแบบนี้ค่ะ
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 'comment = 'ถ้วยรางวัลคนเก่งนะจ๊ะ' WHER' at line 1Error Save [UPDATE picture SET ,comment = 'ถ้วยรางวัลคนเก่งนะจ๊ะ' WHERE FilesID = '' ]
Date :
2010-08-25 17:36:43
By :
nongjar
บรรทัดนี้ $strSQL .=",comment = '".$_POST["comment"]."' ";
เอา , หน้า comment ออกด้วยอ่ะ
Date :
2010-08-25 17:44:28
By :
heng
ลืมเอาออก
เอาออกแล้วก็เหมือนเดิมอ่ะค่ะ
ไม่มี error แล้วข้อมูลก็ไม่เปลี่ยนแปลง
Date :
2010-08-25 17:51:48
By :
nongjar
ลืมดูอีกทีนึง $strSQL .=" WHERE FilesID = '".$_GET["FilesID"]."' ";
น่าจะเป็น $strSQL .=" WHERE FilesID = '".$_POST["FilesID"]."' ";
Date :
2010-08-25 17:53:09
By :
heng
ไม่ได้เหมือนเดิมอ่ะค่ะ
Date :
2010-08-25 17:57:57
By :
nongjar
จะเกี่ยวกับหน้าฟอร์มไหมอ่ะคะ
code หน้าฟอร์ม
<?
include("connect.php");
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><? echo $title; ?></title>
<link href="../css/template_css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #f1f1f1;
}
-->
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form action="edit_comment_new.php" method="post" enctype="multipart/form-data">
<p align="center"></a></p>
<table width="425" border="0" align="center" cellpadding="1" cellspacing="1" class="FontThai">
<?
$SQl=" select * from picture WHERE FilesID='$FilesID' ";
$query= mysql_query($SQl) or die("select error=$sql");
while ($objResult = mysql_fetch_array($query)) {
$FilesID = $objResult["FilesID"];
$comment = $objResult["comment"];
$PicName = $objResult["PicName"];
}
?>
<td><table width="104%" border="0" align="center" cellpadding="1" cellspacing="4" class="FontThai" >
<tr>
<td width="150" valign="top"> </td>
<td width="74%"><img src="../MyResize/<?=$objResult["PicName"];?>" border="0"></a></td>
</tr>
<tr>
<td valign="top"><div align="right">ความคิดเห็น:</div></td>
<td><label>
<INPUT maxLength=40 size=40 name=comment value="<? echo $comment; ?>">
</label></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="แก้ไขความคิดเห็น">
<strong><font color="#FFFFFF"></font></strong> <strong><font color="#FFFFFF"></font></strong></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>
Date :
2010-08-25 18:01:05
By :
nongjar
<form action="edit_comment_new.php" method="post" enctype="multipart/form-data">
เพิ่มบรรทัดนี้เข้าไป => <input type="hidden" name="FilesID" value="<?=$FilesID?>"/>
Date :
2010-08-25 19:53:50
By :
heng
ลองแบบนี้ดู
Code (PHP)
<?
$filesID=$_POST["FilesID"];
$comment =$_POST["comment"];
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("gallery");
$strSQL = "UPDATE picture SET filesID='$filesID',comment='$comment '";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
ประวัติการแก้ไข 2010-08-25 21:38:41 2010-08-25 21:42:51
Date :
2010-08-25 21:37:47
By :
sagi
ขอบคุณ คุณ Guest มากนะคะ
ตอนนี้สามารถเพิ่มลงดาต้าเบสได้แล้วค่ะ
แต่ติดเป็นภาษาต่างดาวใน ดาต้าเบสและในหน้าเว็บด้วยอ่ะค่ะ
Date :
2010-08-25 21:42:48
By :
nongjar
set ดาต้าเบสเป็น utf8_general_ci
แล้วเพิ่ม mysql_query("SET CHARACTER SET tis620"); ต่อจากบรรทัด mysql_connect
แล้วลองแอดข้อมูลไหม่
Date :
2010-08-26 12:26:53
By :
heng
ทำได้แล้วค่ะ
ขอบคุณทุกๆคนมากนะคะ
Date :
2010-08-26 20:03:57
By :
nongjar
Load balance : Server 03