I'm switching my MySQL queries to PDO prepared statements. Most of my queries work but this one just won't work. It breaks right after the 'prepare' method.
What do you think is wrong?
function get_users_days($item_ID, $user_ID)
{
$today = date("Y-m-d");
$SQL = "SELECT *
FROM schedule
WHERE item_ID=:item_ID AND user_ID=:user_ID AND end_date>=:today";
$stmt = $dbh->prepare($SQL);
$stmt->bindParam(':item_ID', $item_ID);
$stmt->bindParam(':user_ID', $user_ID);
$stmt->bindParam(':today', $today);
$stmt->execute();
while($row = $stmt->fetch())
{
// do magical things
}
}
$dbhbeing passed in, or is it a global? – therefromhere Aug 18 '12 at 22:31