Bitteschön

PHP-Code:
<?
$yourstats = mysql_fetch_array(db_query("SELECT * FROM ".$db_prefix."_klickralley WHERE uid=".$_SESSION['uid']." LIMIT 1"));

head("Deine Statistik:");?>
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td align="left" width="55%">Deine aktuellen Klicks: </td><td align="left"><?=number_format($yourstats['klicks'],2,",",".");?></td>
</tr>
</table>
<?foot();?>