If you have saved some HTML code that you have saved in a PHP variable and echo it, it will process the html and output this without the tags.
If you want to see the raw HTML use the method below.
1 2 3 4 5 |
$myvar = htmlspecialchars("<h1>Codehaven is great!</h1>", ENT_QUOTES); echo $myvar; |