I want to display text on the page, the text should look like this:
... but when I echo this, nothing appears!!
How ca I do thi
This is because the browser assumes it is an unknown tag. If you want the browser to show it, use:
echo '<sometext>';
or use the htmlentities function like so:
htmlentities
echo htmlentities('');