I en HTML-kontekst, <?php
, <something
, etc, er åbningen af et html-tag. Rediger <
med sin html-entitet <
for at forhindre, at det sker..
<?php
Endnu bedre, brug htmlspecialchars:
<?php echo htmlspecialchars('<?php echo "test"; ?>'); ?>