New to PHP malarky.
I tried this PHP code for starters
<?php
print = <<<_HTML_
<meta http-equiv="refresh" content="0;URL=http://some.naughty.site.example.com/">
I <b><i>love</i></b> forums that don't filter the HTML tags that they allow to be posted!
_HTML_;
?>
and got this in reply
I <b><i>love</i></b> forums that don't filter the HTML tags that they allow to be posted!
_HTML_;
Why is the _HTML_ showing?
rpjd 2007.03.07, 10:48PM — PHP HTML
StinkFist 2007.03.08, 12:16AM —
Moving to backend 
Welcome aboard, ari will be along shortly to assign barrel duty....
(as for the PHP, just remove the "=" sign from the print statement so it's
print <<< ....
rather than
print = <<<
first

