You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Récupération des résultats de la requête dans un tableau
$result = $pdo->query('SELECT `Titre`,`Nb_vues`,`Commentaires_disabled`,`Notes_disabled`,`Nb_jours_Tendance` FROM `Video`,`Chaine` WHERE Video.Chaine_ID=Chaine.ID_Chaine and `Commentaires_disabled`="VRAI" and `Notes_disabled`="VRAI"')
->fetchAll(PDO::FETCH_NUM);
// On ajoute les noms de colonne au début du tableau
array_unshift($result, array("Titre","NbVues","commentaires désactivés","notes désactivés","Nombre dejours en tendance"));