Page 1 of 1

displaying html code on page

Posted: Mon Mar 27, 2006 12:51 pm
by psychotomus
how can I display html code on the page

print '<b>';

will make bold and not show <b> on the page.

Posted: Mon Mar 27, 2006 12:54 pm
by matthijs

Code: Select all

print htmlentities('<b>');

Posted: Mon Mar 27, 2006 1:05 pm
by psychotomus
thanks.