Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to migrate to php pdo... can someone please tell me why on earth this bit of code is not working?

$stmt = $db->prepare("SELECT SUM(aw_score) AS awscoreaw, SUM(hm_score) AS awscoreaw_def FROM nfl_new WHERE away=:away AND date<:date AND Season=:season");

$stmt->bindValue(':away', $row['away'], PDO::PARAM_STR);
$stmt->bindValue(':date', $row['date'], PDO::PARAM_STR);
$stmt->bindValue(':season', $row['Season'], PDO::PARAM_STR);                            
$stmt->execute();
$affected_rows = $stmt->rowCount();
echo $affected_rows.' ';
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo $rows['awscoreaw_def'].' '.$row['away'].'<br />';
share|improve this question
what are you getting as result ? nothing? – MimiEAM Oct 28 '12 at 3:39

1 Answer

up vote 0 down vote accepted

away is not in your select list, and you use fetchAll, you need to iterate the result.

$rows = $stmt->fectchAll(PDO::FETCH_ASSOC);

foreach ($rows as $row) {
  echo $row awscoreaw['awscoreaw_def'].' '.$row['awscoreaw'].'<br />';
}
share|improve this answer
Thank you... fetchAll was the issue. Replacing with fetch does the trick. – user1043610 Oct 28 '12 at 3:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.