Quote:
Originally Posted by Dismounted
You shouldn't need this line in the file (try removing it):
PHP Code:
define('NO_REGISTER_GLOBALS', 1);
|
I removed it, but still got a blank page
--------------- Added [DATE]1231744615[/DATE] at [TIME]1231744615[/TIME] ---------------
I changed the last part of code
FROM
PHP Code:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('TEST') . '");');
TO
PHP Code:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('$output = "' . fetch_template('TEST') . '";');
echo $output;
//eval('print_output("' . fetch_template('TEST') . '");');
then the result shows exactly as what it should be. Anyone can tell me what is going on?