我正在尝试在我的网站上显示数据库表的计数。我正在使用的代码是:
<?php
$results = mysql_query("SELECT COUNT('id') from `idols`");
$count = mysql_result($results, 0);
$idols = number_format($count);
echo "$idols";
?>
但是当我测试代码时,它给了我这个警告:
警告:mysql_result() 期望参数 1 是资源,在第 92 行给出布尔值。
有人可以帮我吗?