mysqli_query()
trả về FALSE
nếu có lỗi trong truy vấn. Vì vậy, bạn nên kiểm tra nó ...
/* Select queries return a resultset */
if ($result = mysqli_query($dbc, "SELECT Name FROM City LIMIT 10")) {
printf("Select returned %d rows.\n", $result->num_rows);
/* free result set */
$result->close();
}
Xem liên kết này cho mysqli_query
tham khảo http://php.net/manual/en/mysqli.query.php