> What do you mean by "in the middle of the page"? Do you mean, for instance,
> the behavior of "middle.php" in the following PHP example:
>
> <?php
>
> include_once("beginning.inc.php");
>
> include_once("middle.php");
>
> include_once("end.inc.php");
>
> ?>
>
> Is that what you are after?
>Yes, that is what I am after. For instance, if one were to look at the source code of http://dotancohen.com they would see "<!-- / HEADER -->". All the HTML up to that point was output by bigginin.inc.php. Similarly, near the end exists "<div class="bottomfiller">", all the code from there is generated by end.inc.php. These two files are included in every page of the site. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il -- http://mail.python.org/mailman/listinfo/python-list
