คือพอผมเข้าหน้า admin จะลบกระทู้ มันขึ้นแบบนี้อ่ะครับ ผมคิดว่ามันฟ้องให้เช็ค " แต่หาเท่าไร ก็หาไม่เจอ
รบกวนพี่เซียนช่วยหน่อยนะครับ ขอบคุณครับ
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 '' at line 1
$sql = "delete from webboard_post where question_id=".$id[$i];
mysql_query($sql) or die(mysql_error());
$sql = "select attach_file from webboard_reply where question_id=".$id[$i];
$query = mysql_query($sql) or die (mysql_error());
$row = mysql_fetch_array($query);
$filename = $row['attach_file'];
if(file_exists("attach/$filename.jpg")){
unlink("attach/$filename.jpg");
}
$sql = "delete from webboard_reply where question_id=".$id[$i];
mysql_query($sql) or die(mysql_error());
}
mysql_close($conn);
echo "<script>alert('Delete webboard complete.');window.location='index.php';</script>"; ?>