PHP htmlentities() May 22, 2012 Pramod T P It convert all applicable characters to HTML entities Example <?php echo htmlentities(“<a>PHP<a> <br /> <p>HTML</p>”); ?> Output <a>PHP<a> <br /> <p>HTML</p>