Good day,

> In Perl you could print a block of information as it was 
> written like this;
> print <<HTML_END;
> 
> This a whole bunch of HTML code!!!
> 
> HTML_END
> 
> The best part about this, was that you did not have to escape 
> your " and you
> could mix in your variables making it easy to design and 
> layout the HTML. Is
> there a similiar way to do this in PHP?

Yeppers.  It's aaaalmost the same.

echo <<<MULTILINE

...

MULTILINE;

============================
Darren Gamble
Planner, Regional Services
Shaw Cablesystems GP
630 - 3rd Avenue SW
Calgary, Alberta, Canada
T2P 4L4
(403) 781-4948


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to