我有这个 PHP 代码:
if ($username) {
if ($news == 1)
$int = "9";
if ($news == 0)
$int = "12";
}
else
$int = "9";
$query = mysql_query("SELECT * FROM files WHERE active='1' ORDER BY id DESC LIMIT $int");
require ("scripts/connect.php");
$numrows = mysql_num_rows($query);
但是后来我收到了这个错误(注意以 $numrows 开头的行是第 69 行):
警告:mysql_num_rows() 期望参数 1 是资源,布尔值在第 69 行的 /Applications/XAMPP/xamppfiles/htdocs/Site/index.php 中给出
我尝试了很多方法来更改号码,但无济于事。请帮忙!谢谢!