-- rada -- wrote: > Hello all, > > Can anyone help me with heredoc? > I have this code: > > <?php > > echo <<<EOD > > This is a heredoc test. > > Test line 2. > Test line 3 with tab. > > EOD; print nl2br( <<<EOD Here are four lines. EOD ); (Note: the close parens needs to be on its own line)