PHP-Code:
<? 
$sql = db_query("SELECT kontostand FROM ".$db_prefix."_kontodaten WHERE uid=".$_SESSION['uid']." LIMIT 1");
$kontoinfo = mysql_fetch_array($sql);
?>
HTML-Code:
<table width="100%" border="0" cellpadding="1" cellspacing="1">
 <tr>
<td align="left">Kontostand</td><td align="left"><?=number_format($kontoinfo['kontostand'],2,",",".").' '?></td>
</tr>
</table>
ohne test