there's a function in perl that let you echo a whole lotta things all at the same time, useful for html form and the like. is there a similar funtion in php?
the perl command would be like this print <<EOM; stuff to echo
EOM
in php:
print "
all your text <br> html and $variables ";
simple as that :-)
There's also the same method as perl
print <<<EOM
lots of text
EOM;
use three <<<.