That's odd, I just tried it again and now it works... ROFL!
In my template I have:
Code:
<div align="center">
<div class="page" style="width:100%; text-align:left">
<div style="padding:0px 10px 0px 10px">
<table cellpadding="4" cellspacing="2" border="0" width="100%" align="center">
<thead><tr align="center"> <td class="thead" width="100%" align="left">$custompagetitle</td></tr></thead>
<tbody>
<tr>
<td class="alt1" align="left">
And I call it using:
PHP Code:
if($bbuserinfo['userid'])
{
$custompagetitle = "This is the title";
eval('$vbboxtop = "' . fetch_template('vbboxtop') . '";');
eval('$vbboxbot = "' . fetch_template('vbboxbot') . '";');
eval('print_output("' . fetch_template('premier') . '");');
}
else
{
print_no_permission();
}
And it now works... which is strange/good. I guess that $custompagetitle is made available in all 3 templates I call now? Is that ok or should I do it in another way?