ช่วยดูให้หน่อยนะครับ Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in on line 13 กับ 38
บรรทัดที่11กับ36 ลองแก้เป็น
Code (PHP)
$sql = "SELECT * FROM bit WHERE id='".$_GET["id"]."'" ;//บรรทัด11
$sql2 = "SELECT * FROM a_webboard WHERE q_id='".$_GET["id"]."'";//บรรทัด36
หรือไม่ก็
Code (PHP)
$sql = "SELECT * FROM bit WHERE id=$id" ;//บรรทัด11
$sql2 = "SELECT * FROM a_webboard WHERE q_id=$id";//บรรทัด36
ในช่อง [] ควรจะมีเครื่องหมาย "" ด้วยนะครับ เช่นecho $data[name]; เป็น echo $data["name"];
ประวัติการแก้ไข 2011-01-24 09:38:49
Date :
2011-01-24 09:38:06
By :
popypreaw
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
include("config.inc.php") ;
$sql = "SELECT * FROM bit WHERE id='".$_GET[id]."'";
$result = mysql_query($sql) ;
$data = mysql_fetch_array($result) ;
?>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="158" scope="col"><table width="220" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<th>
<?
echo "<img src=images/$data[img] width=140 height=170>";
?>
</th>
</tr>
<tr>
<td>
<?
echo $data[name];
?>
</td>
</tr>
</table>
<p>
<?
include("config.inc.php");
$sql2 = "SELECT * FROM a_webboard WHERE q_id='".$_GET[id]."'"
$result2 = mysql_query($sql2);
while($data2 = mysql_fetch_array($result2)){
$num++;
?>
คำตอบที่
<?=$num;?>
</p>
<table width="500" border="1" align="center" cellpadding="4" cellspacing="1">
<tr>
<td height="40"><?=nl2br($data2["a_answer"]);?></td>
</tr>
<tr>
<td><b>ชื่อผู้ตอบ</b> :
<?=$data2["a_name"];?>
<b>วันที่</b> :
<?=$data2["a_date"];?></td>
</tr>
</table>
<br />
<? } ?></th>
</tr>
<tr>
<td><form id="form1" name="form1" method="post" action="<?=$PHP_SELF;?>?q_id=<?=$data["q_id"];?>">
<table width="400" border="0" align="center" cellpadding="1" cellspacing="1">
<tr>
<td>คำตอบ</td>
<td><textarea name="panswer" cols="40" rows="4" id="panswer"></textarea></td>
</tr>
<tr>
<td width="85">ชื่อผู้ตอบ</td>
<td width="308"><input name="pname" type="text" id="pname" /></td>
</tr>
<tr>
<td><input type="hidden" name="id" value="<?=$_GET[id];?>" /></td>
<td><input type="submit" name="Submit" value=" บันทึก " />
<input type="reset" name="Submit2" value=" ยกเลิก " /></td>
</tr>
</table>
</form>
<div align="center">
<?
if (isset($_POST[Submit])) {
$sql = "INSERT INTO a_webboard VALUES('', '$_POST[panswer]', '$_POST[pname]', NOW(), $_POST[id]);";
$result = mysql_query($sql) or die ("เพิ่มข้อมูลไม่ได้");
echo "บันทึกข้อมูลเรียบร้อยแล้ว";
echo "<meta http-equiv=refresh content=0>" ;
}
?>
</div></td>
</tr>
</table>
</body>
</html>
ตอนนี้ Error ได้หายไปหมดแล้ว แต่ปัญหามันมีอยู่ว่า เมื่อคริกที่ปุ่ม Buttom แล้ว ตรง Url มันแบบนี้อะครับ http://localhost:8080/k2/comment.php?q_id=
(จะเกียวกับค่าที่บรรทัด 59 ตรง ?q_id=<?=$data["q_id"];?> หรือป่าว)
--- รูปภาพนี้เมื่อยังไม่ได้คริกที่ปุ่ม Buttom --
--- รูปภาพนี้เมื่อยังคริกที่ปุ่ม Buttom มาแล้วทำไมได้ผลลัพท์ออกมาแบบนี้อะ --
ประวัติการแก้ไข 2011-01-24 12:32:40 2011-01-24 12:33:27 2011-01-24 12:50:48
Date :
2011-01-24 12:31:32
By :
systemanalysis
Load balance : Server 02