I am trying to assign a variable to the avg statement from mysql. $row is not displaying though.
$st = $this->db->prepare("SELECT AVG(rating) FROM review WHERE provider=? AND review_type='2'");
$st->bindParam(1, $x['id'], PDO::PARAM_INT);
$st->execute();
$row = $st->fetch(PDO::FETCH_ASSOC);
print_r($row);
exit();
$st->execute():$err = $st->errorInfo(); echo $err[2];This will give any errors arising from your query. You might also want to test the raw query in phpMyAdmin using the value of whatever is in$x['id']and see if it produces anything. – Zane Bien Jul 23 '12 at 5:02groub_by(). Zane Bien's deleted answer, because it suggests the use of Aliases while it doesn't have anything to do with your question. That's the heck why. – Adnan Jul 23 '12 at 5:29