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
You probably want <sometext>.
<sometext>
If that text is coming from user input, you should definitely use htmlspecialchars() on it, to help prevent XSS.
htmlspecialchars()