Echo-Problem

Arster-Boy

Erfahrenes Mitglied
Ich möchte per echo einen HTML-Code ausgeben. Allerdings weiß ich nicht, wie ich es machen kann, dass die HTML-Befehle nicht ausgeführt, sondern angezeigt werden.

Bitte um Hilfe
 
Das meine ich nicht. Ich möchte, dass dieser Code:
PHP:
echo '<table border="0" cellspacing="1" cellpadding="1" width="500">
<tbody>
<tr>
<td>Spiele</td>
<td>', $spiele, ' Spiele</td>
</tr>
</tbody></table>';
So angezeigt wird:
Code:
<table border="0" cellspacing="1" cellpadding="1" width="500">
<tbody>
<tr>
<td>Spiele</td>
<td>(Anzahl Spiele) Spiele</td>
</tr>
</tbody></table>
 
Probiere es mal mit einen Punkt.

PHP:
echo '<table border="0" cellspacing="1" cellpadding="1" width="500">
<tbody>
<tr>
<td>Spiele</td>
<td>'  . $spiele .  'Spiele</td>
</tr>
</tbody></table>';
 
Zurück