-6

我一直在尝试学习如何编码并查看示例。在这一行中,我得到了主题错误,有人可以解释这一行的作用以及它为什么会产生该错误

$pages = ceil(mysql_result($pages_query, 0) / $per_page); //dividing total rows with total data to
4

1 回答 1

0

这是因为在该行中:

$pages = ceil(mysql_result($pages_query, 0) / $per_page); //dividing total rows with total data to

mysql_result($pages_query, 0);

返回假。

于 2013-10-01T19:35:41.003 回答