Requette sql avec variable de plusieur données

Fermé
goriol76 - 25 mars 2016 à 17:37
Regis59 Messages postés 21143 Date d'inscription mardi 27 juin 2006 Statut Contributeur sécurité Dernière intervention 22 juin 2016 - 25 mars 2016 à 23:34
Bonjour, a tous voila j' ai un problème sur ma requette mais toujours une erreur impossible de trouver la solution voici mon script
$tchat=$bdd->prepare('SELECT DISTINCT id_unique FROM tchat_prive WHERE id_client_destinataire = ? ');
$tchat->execute(array($getid));
while($resulta_tchat = $tchat->fetch())
{
$valid_id=$resulta_tchat['id_unique'];
$compt_cle=$bdd->prepare('SELECT * FROM tchat_prive WHERE id_unique = ? ');
$compt_cle->execute(array($valid_id));
while($affiche_cle = $comtp_cle->fetch())
{
$id_ex = $affiche_cle['id_client_expediteur'];
$tchat_actif=$bdd->prepare('SELECT * FROM membre WHERE id = ? ORDER BY ID DESC LIMIT 0, 50');
$tchat_actif->execute(array($id_ex));
while($donnees = $tchat_actif->fetch())
{

il me marque ca comme erreur

Fatal error: Call to a member function fetch() on null in /home/bactransvw/www/vos_tchat.php on line 9



1 réponse

Regis59 Messages postés 21143 Date d'inscription mardi 27 juin 2006 Statut Contributeur sécurité Dernière intervention 22 juin 2016 1 321
Modifié par Regis59 le 25/03/2016 à 23:35
Salut

while($affiche_cle = $comtp_cle->fetch()) 


Y'a pas inversion de lettre la?
"Impossible is nothing"
0