Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我主持了一个新的头尾游戏网站。但我在我的索引和历史页面上不断收到此错误消息。
索引页面:警告:mysql_num_rows():提供的参数不是第 233 行 /home/a1906451/public_html/index.php 中的有效 MySQL 结果资源
历史页面:警告:mysql_num_rows():提供的参数不是第 106 行 /home/a1906451/public_html/history.php 中的有效 MySQL 结果资源
有解决的朋友吗?请帮帮我。
mysql_num_rows() 的参数需要一个有效的 MySQL 结果。最有可能的是,您忽略了来自 mysql_query() 的错误或试图查看不返回可用结果对象的查询。
更改mysql_num_rows为@mysql_num_rows第 233 行的 index.php 和第 106 行的 history.php ind
mysql_num_rows
@mysql_num_rows