Possible Duplicate:
Is there a reason to use Heredoc in PHP?
I'm new to PHP.
Is it good practice to use something like that?
echo <<< HTML
<a href="$link" title="$title">$item</a>
HTML;
It does work, but I'm not sure if I'm using it correctly.
Thanks very much...