Identifiant partie : $idparte"; echo ""; //Actualisation des cartes $db=new MyDB(); $afficher = $db->query('SELECT * FROM partieCartes where IdPartie="'.$idparte.'" '); $tableau =[]; while ($row = $afficher->fetchArray()) { $un=$row['colUn']; $deux=$row['colDeux']; $trois=$row['colTrois']; $tout=$un.','.$deux.','.$trois; // $entier=$entier+1; array_push($tableau,$tout); } foreach ($tableau as $val) { echo "

$val d

"; } $comma_separated = implode(",", $tableau); $_SESSION['listecartebdd']=$comma_separated;