Possible Duplicate:
HEREDOC interfering with code indentation
<?php
$my_string = <<<TO
Everything in this rather unnecessarily wordy
ramble of prose will be incorporated into the
string that we are building up inevitably,
inexorably, character by character, line by line,
until we reach that blessed //final line which is this one.
TO;
echo $my_string;
?>
it's error is:
Parse error: syntax error, unexpected $end in C:\wamp\www\ITP - Teaching\PHP\Chapter VIII - String\Heredoc Syntax\index.php on line 19