Answers for "html special chars into html - php"

PHP
3

html special characters php

/*  EXAMPLE:	<p>Bed & Breakfast</p>	-->	  <p>Bed &amp; Breakfast</p>  
    & 	&amp;
    " 	&quot; 				(unless ENT_NOQUOTES is set)
    ' 	&#039; or &apos; 	(ENT_QUOTES must be set)
    < 	&lt;
    > 	&gt;				*/

<?php
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new; 					// <a href='test'>Test</a>
?>
Posted by: Guest on September-05-2021
0

html special char php

<?php
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars($str);

 ?>
Posted by: Guest on June-14-2021

Browse Popular Code Answers by Language