Are there any performance issues involved in breaking in and out of php mode within a page. For example
<?php require("header.inc.php") ?>
some html ....
<?php echo($somevariable) ?>
more html ....
dont put <?php echo($eggs) ?> in one basket
even more html ....
<?php echo($somevariable) ?>
a little bit more of that html ....
<?php require("footer.inc.php") ?>
Is this a good/bad idea? I know that with ASP it isn't generally a good idea but we all know PHP is much better than ASP....right?
Anyway it's not a biggie i was just curious.
Take Care
JAmie