PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in
Posted Rogn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in相关的知识,希望对你有一定的参考价值。
原因在于你操作数据库出错了,但是却没有对应的出错处理。
解决方法是,在
$result = mysqli_query($conn, $sql);
后加上这样一段代码:
if (!$result) { printf("Error: %s\\n", mysqli_error($conn)); exit(); }
之后刷新页面查看具体错误信息。
参考链接:
1. https://blog.csdn.net/weixin_41470917/article/details/84330581
以上是关于PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in的主要内容,如果未能解决你的问题,请参考以下文章
php增加用户时出现的【SQLSTATE[HY000] [2002]