Posts: 2,544
Name: Keith Marshall
Location: West Hartford, CT
|
I forgot to add in the header defines in the index template:
PHP Code:
<?php //# Include application relative to the location of this page require('includes/application_top.php'); /////////////////////////////////////////////////////////////////////////////// //### Processing section: // This is where you would parse form data before output is sent to browser // You are safe here to send custom headers if needed // such as redirect /////////////////////////////////////////////////////////////////////////////// //### Define header detials: define('PAGE_TITLE', 'Home'); define('PAGE_AUTHOR', 'mgraphic'); define('PAGE_DEFINITION', ''); define('PAGE_KEYWORDS', ''); define('BODY_ONLOAD', ''); /////////////////////////////////////////////////////////////////////////////// //### Page Content section: require(DIR_FS_INCLUDES . 'templates/template_header.php'); ?> Main Page Content HTML <?php require(DIR_FS_INCLUDES . 'templates/template_footer.php'); ?>
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|