PHP-Code:

 <?head("BannerJackpot Gewinner");?>
 <table cellpadding="5" cellspacing="1" width="100%" class=menue border="1" bordercolor="#640002">
 <tr>
 <td align="center" width="33%"><b>Zeit</b></td>
 <td align="center" width="33%"><b>User</b></td>
 <td align="center" width="33%"><b>Jackpothöhe</b></td>
 </tr>
 <?
 $potdaten = db_query("SELECT * FROM ".$db_prefix."_check_jackpots WHERE beendet = 1 ORDER BY Zeit DESC LIMIT 10");
 while ($potliste=mysql_fetch_array($potdaten)) {
 echo '
 <tr>
 <td align="center" width="33%" nowrap>'.date("d.m.Y H:i:s",$potliste[zeit]).'</td>
 <td align="center" width="33%">'.$potliste[uid].'</td>
 <td align="center" width="33%">'.number_format($potliste[banner_jackpot],0,",",".").'</td>
 </tr>
 ';
 }
 ?>
 </table>
 <?foot();?>
wie wird das hier gemacht?