I\'m new to PHP and don\'t understand what the point of <<<_END
is. Could someone please explain when this should be used? I\'ve looked at various exam
Does this help? http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
It allows you to echo out a block of text (just the same as with echo "words";
), but without using the beginning/ending quotes, and without having to escape contained double quotes. Read the manual link above for more detail.