Hello,
I'm having a weird problem with some PHP when outputting some HTML. For example:
echo "<h1>There are errors!</h1>";
foreach($errors AS $error)
{
echo $error . '\n';
}
exit();
I want the output to actually show the text in H1 style, however the output is like this:
<h1>There are errors!</h1>
In other words, it isn't processing the HTML.
Any suggestions?