ขึ้นอย่างนี้ใครรู้วิธีแก้บอกหน่อย Warning: mysql_fetch_array():
<html>
<head>
<title>**Othello**</title>
</head>
<body>
<h1>Othello Game</h1>
<meta http-equiv="Refresh" content="5">
<?php
mysql_connect("localhost", "root", "othello") or die("เชื่อมต่อไม่สำเร็จ มีข้อมูลผิด");
mysql_select_db("othello") or die("เลือกฐานข้อมูลไม่ได้");
$number = $_POST['number'];
$result = mysql_query("SELECT * FROM othellotable WHERE number = $number");
while($row = mysql_fetch_array($result))
{
echo "<br />";
echo $row['table'];
echo "<br />";
}
?>
ผลแสดง
โชว์ได้ตามที่ต้องการ แต่พอหน้า page refresh ก้อขึ้น warning ใครรู้ บอกหน่อยยยย
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\game.php on line 17
<head>
<title>**Othello**</title>
</head>
<body>
<h1>Othello Game</h1>
<meta http-equiv="Refresh" content="5">
<?php
mysql_connect("localhost", "root", "othello") or die("เชื่อมต่อไม่สำเร็จ มีข้อมูลผิด");
mysql_select_db("othello") or die("เลือกฐานข้อมูลไม่ได้");
$number = $_POST['number'];
$result = mysql_query("SELECT * FROM othellotable WHERE number = $number");
while($row = mysql_fetch_array($result))
{
echo "<br />";
echo $row['table'];
echo "<br />";
}
?>
ผลแสดง
โชว์ได้ตามที่ต้องการ แต่พอหน้า page refresh ก้อขึ้น warning ใครรู้ บอกหน่อยยยย
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\game.php on line 17
ขอละเอียดๆอีกรอบได้มั้ยคะ
ให้ลอง echo query ออกมาดูก่อน
ใสอย่างนี้ได้มั้ยคะ
<meta http-equiv="Refresh" content="5";url=othello.php>
หรือต้องเพิ่มตรงไหน