<?php
// --------------------------------
// lister les catégories d'un annuaire sur deux colonnes
// --------------------------------
$ok = true;
$r = mysql_query("select * from categories order by titre;");
while($ligne = mysql_fetch_array($r))
{
$idcat = $ligne["idcat"];
$titre = $ligne["titre"];
if ($ok) echo("<tr>");
echo("<td width=\"50%\">- <a href=\"sites.php?idcat=$idcat\">$titre</a></td>");
if (!$ok) echo("</tr>");
$ok = !$ok;
}
// --------------------------------
// après à vous de constiuer la liste des sites web
// de la page "sites.php"
// --------------------------------
?>