A | B
C | D
usw.
wäre nett, wenn mir jemand dabei helfen könnte.
Code: Alles auswählen
<?php
$i=0;
$result=@mysql_query("SELECT * FROM ".$table_cat." ORDER BY name ASC");
while($row=@mysql_fetch_row($result)) {
echo '<a href="'.$row[2].'.html">'.$row[1].'</a><br>
';
$i++;
?>