Can someone explain how I would output the result of the sql below? currently getting \'Object of class mysqli_result could not be converted to string\'.
$sq
Error because you are echoing an object, so try like this,
while($res = mysqli_fetch_array( $result )) { echo $res['AverageSatisfactionScore']; }