
01-21-2006, 11:17 PM
|
|
Some of your code is wrong.
I don't know what this is:
PHP Code:
$reqpage = $_REQUEST['reqpage'];
$globaltemplates = array( $reqpage, );
That part should be deleted to this:
PHP Code:
$globaltemplates = array( 'template_name' );
(Change template_name with the actualy template name of the template your using)
Then the eval should be:
PHP Code:
eval('print_output("' . fetch_template('template_name') . '");');
|