79310563

Date: 2024-12-26 22:48:13
Score: 0.5
Natty:
Report link

What worked for me was to use the PHP HEREDOC syntax to stuff the html into a PHP string --

<pre>
<?php
$str=<<<HEREDOC
html code including most anything (but not more php)
HEREDOC;
echo htmlentities($str);
?>
</pre>
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Tim