mysqli_num_rows()期望参数1为mysqli_result,第285行给出布尔值

时间:2016-08-08 02:24:06

标签: xampp

$get_list_pro = "select * from products where product_list='$list_id'";
$run_list_pro = mysqli_query($con, $get_list_pro);
$count_lists = mysqli_num_rows($run_list_pro);*

1 个答案:

答案 0 :(得分:0)

选择查询错误时会发生此错误。您使用select * from products where product_list='$list_id选择的项目。 table produc t。

中不存在