Re: Silly problem with output



Jorge A wrote:
Hi!

$text = 'a<b';
print $text;

It only shows the output: "a". How can I get the output: "a<b"

Thanks in advance!

Jorge,

try:
print htmlentities($text);

why:
http://www.php.net/manual/en/function.htmlentities.php

Cheers,
Carl.
.