我有一個問題,真的讓我感到震驚我創建了一個網站,我希望我的用戶首先連接到該網站,然後他們將信息填充到表中,然後保存數據,並通過ID 重新顯示他們這是什麼,我特穎做可捕捉的致命錯誤:類PDoCtatement的對象無法轉換爲D中的字符串
$id=#SESSION{idCommercant}
//$mail=$_SESSION['_mail'];
$reponse = $bdd->prepare("SELECT * FROM produit, produit_commerce, commerce, commercant
where produit_commerce.idmagasin=commerce.idMagasin
and produit.idProduit=produit_commerce.idproduit
and commerce.idCommercant= commercant.idCommercant
and commercant.idCommercant= :id ;");
$reponse->execute(array(':id'=>$id)) or die(print_r($reponse->errorInfo()));
但這返回以下錯誤:
Catchable fatal error: Object of class PDOStatement could not be converted to string in D:\wamp\www\it_technology\Affichage\essai.php on line 45
什麼是'$ id =#SESSION {idCommercant}'?什麼是'45'? – PeeHaa
我想問什麼是第45行 –