1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
<table border="0"> <?php
$ok = true;
$req = mysql_query("select id,titre from categories order by titre"); while($ligne = mysql_fetch_array($req)) { $id = $ligne["id"]; $titre = $ligne["titre"]; if ($ok){echo("<tr>");} echo("<td><a href=\"cat.php?id_cat=$id\">$titre</a>"); if (!$ok){echo("</tr>");} $ok = !$ok; }
?> </table> |