|
|
|
warnning อย่างงี้คืออะไรคับ Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource |
|
|
|
|
|
|
|
ผิดที่ sql น่าจะเป็น $sql = "select * from $tbname";
|
|
|
|
|
Date :
5 ก.ค. 2549 09:18:27 |
By :
นิจัง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$dbquery = mysql_db_query($dbname,$sql);
ลองเปลี่ยนเป็น
$dbquery = mysql_query($sql); จะดีกว่ามั้ยครับ
|
|
|
|
|
Date :
5 ก.ค. 2549 12:24:49 |
By :
triplea |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
|
|
|
|
|
Date :
5 ก.ค. 2549 14:25:11 |
By :
plakapongza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยแก้ไข warnning อย่างงี้ให้หน่อยได้ไหมคะ Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource เครียดจะตายอยู่แล้วเนี่ย
<?php
$host="localhost";
$user="root";
$password="stud52";
$link=mysql_connect($host,$user,$password);
mysql_query("use student ;");
$sql="SELECT * FROM Cust ;";
$result = mysql_query($sql);
$ttrec=mysql_num_rows($result);
for ($i=0; $i<$ttrec; $i++) {
echo mysql_result($result,$i,"idcust")." ";
echo mysql_result($result,$i,"nacust")." ";
echo mysql_result($result,$i,"address")." ";
echo mysql_result($result,$i,"telcust")."<BR>";
}
mysql_close();
?>
|
|
|
|
|
Date :
2009-08-24 16:23:33 |
By :
nuttarinee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|