I cant for the live of me remember how you echo a large block.

its something like

ECHO UNTIL ENDIT


 <p> Lots of fun HTML here! </P>
 <b> weeee </b>


<<ENDIT

any ideas?

    echo <<<EOF
    this will output everything
    until the next
    occurance of EOF on a line
    without any other spaces or characters
    (... with the exception of an optional semicolon)
    EOF;

      heredoc

      $str = <<<EOD
      Example of string
      spanning multiple lines
      using heredoc syntax.
      EOD;
        Write a Reply...