Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in ....
และ
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in ...
สาเหตุที่มันขึ้น
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in ....
และ
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in ...
เป็นเพราะว่าเรายังไม่ได้ประกาศ query ค่ะ ลองเอาไปประยุกต์ต่อน่ะค่ะ
<?
$id=1;
$sql = "select * From $table where id = '$id";
$result = mysql_query($sql);
$Num_Rows = mysql_num_rows( $result );
$sql = "select * From $table where id = '$id' ORDER BY id LIMIT $offset, $perpage";
$result = mysql_query( $sql);
$Num_Rows = mysql_num_rows( $result );