Problème tableaux PHP-HTML5-MYSQL
Résolu/Fermé
Ibilolz
Messages postés
130
Date d'inscription
mardi 1 avril 2014
Statut
Membre
Dernière intervention
26 juin 2023
-
Modifié par Ibilolz le 16/04/2014 à 22:11
Ibilolz Messages postés 130 Date d'inscription mardi 1 avril 2014 Statut Membre Dernière intervention 26 juin 2023 - 16 avril 2014 à 22:33
Ibilolz Messages postés 130 Date d'inscription mardi 1 avril 2014 Statut Membre Dernière intervention 26 juin 2023 - 16 avril 2014 à 22:33
A voir également:
- Problème tableaux PHP-HTML5-MYSQL
- Easy php - Télécharger - Divers Web & Internet
- Tableaux croisés dynamiques - Guide
- Mysql community server - Télécharger - Bases de données
- Fusionner deux tableaux excel - Guide
- Html5 video player - Télécharger - Divers Web & Internet
2 réponses
onbrade
Messages postés
3
Date d'inscription
jeudi 6 mars 2014
Statut
Membre
Dernière intervention
16 avril 2014
1
16 avril 2014 à 22:16
16 avril 2014 à 22:16
il faut déplacer la partie création de l'entete de ton tableau de son contenu. essaie cela :
<?php
include 'fonctions.connect.php';
$sql="SELECT * FROM Salle";
$exec=mysql_query($sql);
echo
'<table>
<tr>
<th>Salle</th>
<th>Decription</th>
<th>Nombre de poste</th>
</tr>
';
while ($ligne=mysql_fetch_array($exec))
{
echo ' <tr>
<td>'.$ligne['num_salle'].'</td>
<td>'.$ligne['description'].'</td>
<td>'.$ligne['nombre_poste'].'</td>
</tr>';
}
echo '</table>';
?>
<?php
include 'fonctions.connect.php';
$sql="SELECT * FROM Salle";
$exec=mysql_query($sql);
echo
'<table>
<tr>
<th>Salle</th>
<th>Decription</th>
<th>Nombre de poste</th>
</tr>
';
while ($ligne=mysql_fetch_array($exec))
{
echo ' <tr>
<td>'.$ligne['num_salle'].'</td>
<td>'.$ligne['description'].'</td>
<td>'.$ligne['nombre_poste'].'</td>
</tr>';
}
echo '</table>';
?>
Ibilolz
Messages postés
130
Date d'inscription
mardi 1 avril 2014
Statut
Membre
Dernière intervention
26 juin 2023
16 avril 2014 à 22:33
16 avril 2014 à 22:33
Parfait merci love