Quote:
Originally Posted by Danny.VBT
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') . '");');
|
He's trying to pull the template in the query string...
Post your actual template here.