vb3.0.3
In my .php file I have this:
PHP Code:
if($bbuserinfo['userid'])
{
eval('$vbboxtop = "' . fetch_template('vbboxtop') . '";');
eval('$vbboxbot = "' . fetch_template('vbboxbot') . '";');
eval('print_output("' . fetch_template('premier') . '");');
}
else
{
print_no_permission();
}
Is there anyway of passing some details to the vbboxtop template (that's a custom one I made). I would like to specify a page title and pass that to vbboxtop. So my .php code might look like this:
PHP Code:
if($bbuserinfo['userid'])
{
$mypagetitle = "This is the title";
eval('$vbboxtop = "' . fetch_template('vbboxtop') . '";'); XX pass $mypagetitle
eval('$vbboxbot = "' . fetch_template('vbboxbot') . '";');
eval('print_output("' . fetch_template('premier') . '");');
}
else
{
print_no_permission();
}
I need to know how to pass $mypagetitle to vbboxtop. That way when I edit the template in the AdminCP I can put $mypagetitle in the template and it will change the title depending on which of my custom .php pages is calling it.
Hope this makes sense... I know this site is quiet but any help would be great.