> > ie. don't necessarily use 1 file per block, create functions that are
> > defined in a single file and call those instead of including a new file.
>
> How do you echo your html, do you put the html in your functions and
> escape the double quotes? There is some extra load there echoing all the
> html?

echo HTML?  I do this:

  <? php stuff..?>
  HTML stuff
  <? more php stuff ?>

I drop out of PHP mode to display raw HTML.  If I have a lot of HTML with
a lot of PHP variables tossed in, I do:

  <?
   $test = 'test';
   $one = 'one';
   echo <<<EOF
   This is a $test.
   And here is another $one.
  EOF;
   ..more php code...
 ?>

Or sometimes simply:

  HTML stuff <?=$variable?> and some more HTML stuff.

-Rasmus


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to