<?php
// get required global info
define('X_SCRIPT', 'contact.php');
require 'header.php';
// load navigation text
nav('contact');
// load templates used
loadtemplates('contact');
// load css
eval('$css = "'.template('css').'";');
// load header
eval('$header = "'.template('header').'";');
// load page you want here
eval('$pagebody = "'.template('contact').'";');
// load footer stuff
end_time();
// load footer
eval('$footer = "'.template('footer').'";');
// transmit response entity
echo $header.$pagebody.$footer;
?> |