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
个性签名:时间会解决一切