Index du Forum » » Le coin des codeurs

Auteur

pb d'affichage de requete SQL
EBH
151     

  Posté : 23-06-2003 21:12

Perso j'aurais plutôt écrit ceci :

$request = mysql_query("SELECT champ1, champ2, etc FROM match ORDER BY champ3 ASC");
while(list($champ1, $champ2, $champ3, $etc) = mysql_fetch_row($request))
{
echo "<TR>\n"
."<TD>".$champ1."</TD>\n"
."<TD>".$champ2."</TD>\n"
."<TD>".$etc."</TD>\n"
."</TR>\n";
}



Cet article provient de NPDS

http://www.npds.org/viewtopic.php?topic=6216&forum=5