php print html as text code example
Example 1: show html as text in php
htmlspecialchars('<strong>something</strong>')
Example 2: print html code in php
<?php
echo "<h2>HTML with PHP!</h2>";
echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";
?>