<?
include("
db.inc");
?>
<
html>
<head>
<title>Nero's Quake</title>
<link rel="stylesheet" type="text/css" href="css.css">
<body>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td background="multi/top.gif" width="1024" height="250" valign="bottom">[img]multi/nav.gif[/img]</td>
</tr>
<?
$nav1 = array();
$abfrage = "SELECT * FROM nav1 ORDER BY stelle";
$ergebnis = mysql_query($abfrage);
while ($row = mysql_fetch_object($ergebnis))
array_push($nav1,$row->name);
asort($nav1);
$anzahl = count($nav1);
?>
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0">
<colgroup>
<col width="150">
<col width="*">
<col width="200">
</colgroup>
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0">
<colgroup>
<col width="150">
</colgroup>
<tr>
<?
for($count = 0; $count == $anzahl = $anzahl - 1; $count++)
{
echo '<td background="multi/navmitte.gif" width="150" height="34" valign="top">
<span class="nav1">'.$nav1[$count-1].'</span>
</td>';
}
echo '<td background="multi/navende.gif" width="150" height="21" valign="top">';
?>
</tr>
</table>
</td>
<td>
<center>Platzhalter(center)</center>
</td>
<td>
<center>Platzhalter(right)</center>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</
html>