|
php include tags work well. <?php include("path/file.inc"); ?>
CSS generated design would allow you to keep the same style on every page.
You could edit specific .inc files depending on what your php include tags directories are named.
You could have a news.inc section on every page and only edit one file to change the news section on all. The only limits are your imagination.
For instance.
<div id="your box">
<?php include("path/to/news.inc"); ?>
</div>
All of your content from news.inc would stay inside your divide tag.
Hope this helps?
One other thing, I find this very useful in navigation. When you include your navigation. Any time you add a page, all you need to do is edit the navigation include file to change the links on all of your pages.
Very useful if your site grows.
Last edited by Sydpix; 02-11-2007 at 01:28 PM..
|