This is probably a stupid question but I can't find the answer anywhere. I want to be able to print <head> or <title> so it is displayed not interpreted by the parser. How can you get html tags to be outputted to the display?
<?php $new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES); echo $new; // <a href='test'>Test</a> ?>
From PHP manual
Thanks