hi könnt ihr mir mal wieder weiterhelfen? 
ich möchte die ausgabe eines counters in einer tabelle darstellen. Wie bekomme ich das hin?
so hab ich mir dsa vorgestellt:
so sieht es ohne tabelle aus:

ich möchte die ausgabe eines counters in einer tabelle darstellen. Wie bekomme ich das hin?
so hab ich mir dsa vorgestellt:
Code:
//Ausgabe
for($x=0;$x<count($zeile1);$x++){$count=$count+1;}
<table width="158" border="1" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FBFBFB">
<tr>
<td width="8" bgcolor="#E6E6E6"> </td>
<td echo '<font class="Stil2">Heute: '; echo $heute;echo ' </font><br>';</td>
</tr>
<tr>
<td bgcolor="#E6E6E6"> </td>
<td echo '<font class="Stil2">Gestern: '; echo $gestern;echo ' </font><br>';</td>
</tr>
<tr>
<td bgcolor="#E6E6E6"> </td>
<td echo '<font class="Stil2">Gesamt: '; echo $gesamt;echo '</font><br>';</td>
</tr>
<tr>
<td bgcolor="#E6E6E6"> </td>
<td echo '<font class="Stil2">User online: '; echo $count=$count-4;echo '</font><br>';</td>
</tr>
</table>
?>
so sieht es ohne tabelle aus:
Code:
for($x=0;$x<count($zeile1);$x++){$count=$count+1;}
echo '<font class="Stil2">Heute: '; echo $heute;echo ' </font><br>';
echo '<font class="Stil2">Gestern: '; echo $gestern;echo ' </font><br>';
echo '<font class="Stil2">Gesamt: '; echo $gesamt;echo '</font><br>';
echo '<font class="Stil2">User online: '; echo $count=$count-4;echo '</font><br>';