<table>
<tr>
<?php
$i = 1;
while($rows=mysql_fetch_array($result)){
?>
<td><A class=flyout href="<? echo $rows[gamelogo]; ?>"><img class=tmbright src="<? echo $rows[gamelogo]; ?>" width="80" height="80" alt="" border="0"></a></td>
<td><a href="game.php?id=<? echo $rows['spiele_id']; ?>"><font size="2"><? echo $rows['spielname']; ?></font></a></td>
<td><font size="2"><? echo $rows['genre']; ?></font></td>
<?php if($i%2 == 0) : ?> </tr><tr><?php endif; ?>
<?php $i++; ?>
}
?>
</table> |