What does the "<<<END" do? (from :
http://justinvincent.com/home/articl...cleId=8&page=2)
<?php
$turkeys = “variables”;
print <<<END
It is nice to know that “you” can print any amount of text on
<font color=”red”>multiple</font> lines with <b>any</b>
character and still include $turkeys.
END;
?>
-W