我一直在努力学习如何编写代码并一直在查看示例。在这一行我得到主题错误可以有人解释这行做什么以及为什么它创建该错误
$pages = ceil(mysql_result($pages_query, 0) / $per_page); //dividing total rows with total data to
答案 0 :(得分:0)
这是因为在行中:
$pages = ceil(mysql_result($pages_query, 0) / $per_page); //dividing total rows with total data to
mysql_result($pages_query, 0);
返回false。