Quote:
Originally Posted by AN-net
use require_once('./global.php');
to activate all vb functions and instead of doing $var["blah"] use $var['blah']
|
Unfortunatly that changed nothing.
Here is the whole script thus far.
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'Auction');
// ################### 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(
'auction,auction_cat_bits',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = array();
$navbits[$parent] = 'Auction';
// ######################## START GET CATAGORIES #########################
$getcat = $DB_site->query("SELECT * FROM auction_item ORDER BY 'cats'");
while ($getcats = $DB_site->fetch_array($getcat)) {
$cat_id = $getcats['cat_id'];
$cats = $getcats['cats'];
eval('$auction_cat_bits = "' . fetch_template('auction_cat_bits') . '";');
}
// ######################## END GET CATAGORIES ###########################
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('auction_main') . '");');
?>