Alright, I've struggled this far:
PHP Code:
<?php
error_reporting(7);
require('global.php');
eval("\$template_nav .= \"".gettemplate('template_nav')."\";");
eval("dooutput(\"".gettemplate('template')."\");");
?>
and then the template 'template'
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>$bbtitle - Page Title</title>
$headinclude
</head>
<body>
$header
<br />
$template_nav
<br /><br />
$footer
</body>
</html>
And then template_nav obviously being some navigation. What I'm really struggling with now is trying to set up database extracted data in the proper area. I can query the database alright, but I can't figure out how to output the data where I want it to go. Any pointers? Thanks!