Thats the 'hack' I was talking about already having setup. But I cant get php code into it.
--------------- Added [DATE]1201241525[/DATE] at [TIME]1201241525[/TIME] ---------------
I figured it out
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(
'TEST',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
echo $stylevar[htmldoctype]; ?>
<html dir="<?php echo $stylevar[textdirection];?>" lang="<?php echo $stylevar[languagecode];?>">
<head>
<title><?php echo $vboptions[bbtitle];?></title>
<?php echo $headinclude;?>
</head>
<body>
<?php echo $header;
echo $navbar;
echo 'I AM THE MAN!!!!!!';
echo $footer; ?>
</body>
</html>
One more question tho. How would I get '<if condition="$show['member']">' to read properly from the php page? Should I convert it to a php IF statement .. if ($show['member'] != false) ....
--------------- Added [DATE]1201242875[/DATE] at [TIME]1201242875[/TIME] ---------------
Ok .. actually its not quite 100%. The page title doesnt work

. Need help executing the variables from the page correctly ..