heres the code im using
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'test'); // change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'hldevs',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
define('VB_AREA', 'Forum');
define('CWD', 'C:/inetpub/vhosts/hldevs.com/httpdocs/forums');
require_once(CWD . '/global.php');
require_once(CWD . '/includes/init.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = array();
$navbits[$parent] = 'index';
$navbits = construct_navbits($navbits);
eval('print_output("' . fetch_template('test') . '");');
?>
and the header and stuff is in the test template so i couldnt figure out how to put the php in there