LPMJ Example 3-9 (Click on the icon to view the source for copy and pasting)
<?php
$author = "Alfred E Newman";

$out = <<<_END
This is a Headline

This is the first line.
This is the second.
- Written by $author.
_END;
?>