Posts: 2,317
Name: Keith Marshall
Location: West Hartford, CT
|
Split you header and footer (and even other nav areas) into seperate php files, then you can just "include" them as you construct your new page.
PHP Code:
<?php require('header.php'); ?> Some html web page content goes here <?php require('footer.php'); ?>
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|