I have seen this through out several php file, and wanted to know, what purpose this served, if any and is it something i should use, or stay away from.
$html = <<<END
Some html stuff to output {$phpvariable
END;
vs.
$html = "Some html stuff to output {$phpvariable}";