Originally posted by Anon
what do you mean?
and why are you calling me a "bugger"?
It's an expletive, not an invective. An expression of frustration, not contempt. The code isn't getting rendered properly (this is why we have "Preview Reply" and "edit" buttons 😉). "Drat" could've been used instead.
Take your pick:
echo "<font size=\"2\">Cookies must be enabled to stay logged in</font>";
echo '<font size="2">Cookies must be enabled to stay logged in</font>';
echo <<<EOL
<font size="2">Cookies must be enabled to stay logged in</font>
EOL;
Or escape out of PHP completely for the duration:
?><font size="2">Cookies must be enabled to stay logged in</font><?php
Best of all (as has been suggested) is to drop <font> tags completely, and stick to CSS. But you'd still need to actually write the code, so the above still applies:
echo "<span class=\"note\">Cookies must be enabled to stay logged in</span>";
etc.