How would I make this actually display EXACTLY with PHP?
$answer=<script>alert(It converts to HTML.)</script>
echo "The function is: htmlspecialchars ($answer)."
How would I make this actually display EXACTLY with PHP?
$answer=<script>alert(It converts to HTML.)</script>
echo "The function is: htmlspecialchars ($answer)."
$variable = <<<'EOS'
$answer=<script>alert(It converts to HTML.)</script>
echo "The function is: htmlspecialchars ($answer)."
EOS;
echo htmlspecialchars($variable);
This will display the message exactly as you typed it.
$answer = "<script>alert(It converts to HTML.)</script>"
echo "The function is: htmlspecialchars".$answer;