在PHP代碼中的以下SQL查詢不起作用,有人可以幫助我嗎?變量在哪裏條件
$reponse = $bdd->query("SELECT * FROM tasks WHERE destinataire = ':destinataire' ORDER BY maturity ASC");
$reponse->execute(array(
':destinataire'=>$_SESSION['login']
));
正確的查詢是如下:
$reponse = $bdd->prepare("SELECT * FROM tasks WHERE destinataire = :destinataire ORDER BY maturity ASC");
什麼是錯誤信息,或者代碼不起作用? – rrehbein 2013-03-06 17:25:15
@rrehbein在做了JW提示我之後,我得到了以下錯誤 致命錯誤:調用一個成員函數execute()對64行非C:\ wamp \ www \ progecoo2 \ tasks.php中的非對象 – Henri 2013-03-06 17:30:20