So this should automatically place the head and foot in the page? Because it most definately doesn't.
PHP Code:
<?php
error_reporting(7);
require('global.php');
?>
Neither does (although it does echo just the header)
PHP Code:
<?php
error_reporting(7);
require('global.php');
eval("dooutput(\"".gettemplate('header')."\");");
eval("dooutput(\"".gettemplate('footer')."\");");
?>
or
PHP Code:
<?php
error_reporting(7);
require('global.php');
echo $header;
echo $footer;
?>