Possible duplicate:
mysql_fetch_array () expects parameter 1 to be a resource, boolean is set to select
The following warning is below, and I was wondering how to fix it.
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given on line 65
The code is around this section of the PHP code below. If necessary, I can specify the full code.
// function to retrieve average and votes function getRatingText(){ $dbc = mysqli_connect ("localhost", "root", "", "sitename"); $sql1 = "SELECT COUNT(*) FROM articles_grades WHERE users_articles_id = '$page'"; $result = mysqli_query($dbc,$sql1); $total_ratings = mysqli_fetch_array($result); $sql2 = "SELECT COUNT(*) FROM grades JOIN grades ON grades.id = articles_grades.grade_id WHERE articles_grades.users_articles_id = '$page'"; $result = mysqli_query($dbc,$sql2); $total_rating_points = mysqli_fetch_array($result); if (!empty($total_rating_points) && !empty($total_ratings)){ $avg = (round($total_rating_points / $total_ratings,1)); $votes = $total_ratings; echo $avg . "/10 (" . $votes . " votes cast)"; } else { echo '(no votes cast)'; } }
php mysql mysqli error-handling
tEcHnUt
source share