Instead of using headers/footers in php, can I...
Hi,
Currently, I am using PHP includes to assemble my page elements together. The header gets its own include, the content, and the footer.
Only problem with this scenario is that things opened in the header -- like tables, for instance -- aren't closed until the footer. As you might imagine, this makes editing the header OR footer a very daunting process.
Would it, instead, be possible to fetch -- as an include -- the entire site template... and specify somewhere inside where the content will be included? This way, when I need to modify the template, it'll hold up together in front of me as I am working on it (and not just contain opening elements that are never closed, or vice versa).
