PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_PART', 'soft');
define('THIS_SCRIPT', 'soft');
// #################### 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(
// change the lines below to the list of actual templates used in the script
'soft_display',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ########################## REQUIRE BACK-END ############################
chdir('C:/AppServ/www/vb38');
require_once(FORUM_PATH.'/global.php');
// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('soft_display') . '");');
?>