Hi list,
I just thought about a small optimization that could make our lives a little easier:
As far as I can see, footoer.inc.php is always the last page to be called. This is why we find much code like this:
include('./footer.inc.php'); exit;
imho, we should be able to put the exit call into footer.inc.php, so that we do not always have to call it manually after having displayed the footer.
Comments?
Regards,
Hi Alexander and all
Original message (Alexander M. Turek, Tuesday 25.11.2003 00:58 +0100):
I just thought about a small optimization that could make our lives a little easier:
As far as I can see, footoer.inc.php is always the last page to be called. This is why we find much code like this:
include('./footer.inc.php'); exit;
imho, we should be able to put the exit call into footer.inc.php, so that we do not always have to call it manually after having displayed the footer.
Comments?
It should be a bit faster and I don't see any problems, it can cause, if you have time, feel free to implement it :-)