TABLEAU PHP

Fermé
mashu - 3 juin 2004 à 10:42
LeSousss Messages postés 149 Date d'inscription vendredi 30 avril 2004 Statut Membre Dernière intervention 23 juillet 2010 - 3 juin 2004 à 11:07
Bonjour,
j'ai une requete "SELECT nom_photo FROM photo" et j'aimerai savoir comment afficher les résultats dans un tableau a 3 colonnes et bien sur à n lignes...
J'arrive pas avec mysql_fetch_row.
Comment faire?
Merci d'avance.
Mashu
A voir également:

1 réponse

LeSousss Messages postés 149 Date d'inscription vendredi 30 avril 2004 Statut Membre Dernière intervention 23 juillet 2010 15
3 juin 2004 à 11:07
Slt,
essaye avec mysql_fetch_array :

while(mysql_fetch_arrray)
{
echo "<tr>";
echo "<td>";
.......
echo "<td>";
echo "<tr>";
}
0