1 min read

How to display HTML tags as plain text in browser using php


Show HTML tags in browser we can use  htmlspecialchars()

 <?php  
 $new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);  
 echo $new; // &lt;a href=&#039;test&#039;&gt;Test&lt;/a&gt;  
 ?>  
Share your Love

Leave a Reply

Your email address will not be published. Required fields are marked *