Sigo recibiendo el siguiente error y me preguntaba cómo solucionarlo.Error fatal: tipos de operandos no admitidos
Fatal error: Unsupported operand types on line 97
Es alrededor de esta área del código que se enumera a continuación. Puedo listar el código completo si es necesario.
código PHP
$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)';
}
Aquí es la línea 97
$avg = (round($total_rating_points/$total_ratings,1));
Aquí está el código completo.
function getRatingText(){
$dbc = mysqli_connect ("localhost", "root", "", "sitename");
$page = '3';
$sql1 = "SELECT COUNT(*)
FROM articles_grades
WHERE users_articles_id = '$page'";
$result = mysqli_query($dbc,$sql1);
if (!mysqli_query($dbc, $sql1)) {
print mysqli_error($dbc);
return;
}
$total_ratings = mysqli_fetch_array($result);
$sql2 = "SELECT COUNT(*)
FROM grades
JOIN articles_grades ON grades.id = articles_grades.grade_id
WHERE articles_grades.users_articles_id = '$page'";
$result = mysqli_query($dbc,$sql2);
if (!mysqli_query($dbc, $sql2)) {
print mysqli_error($dbc);
return;
}
$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)';
}
}
¿cómo puedo solucionar esto porque tengo que dividir $ total_rating_points/$ TOTAL_RATINGS – tEcHnUt
$ TOTAL_RATINGS [0]/$ total_rating_points [0]. También es posible que desee comprobar si Count (*) es la función de agregación correcta para ambas consultas. – VolkerK