我有一个真正让我担心的问题我创建了一个网站,我希望我的用户首先连接到该网站,然后他们在表格中填写信息,然后保存数据并通过 id 重新显示它们这就是我想要的做
$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