Quote:
Originally Posted by simonhind
thx but this is for a php file and not a template i need to replace
eval('$tblreports_list .= "'.fetch_template in a template
|
He explains what php code to use to render templates. You no longer use:
PHP Code:
eval('$mytemplate = "' . fetch_template('mytemplate') . '";');
You now use something similar to:
PHP Code:
$templater = vB_Template::create('mytemplate');
$templater->register('my_var', $my_var);
$templater->register('my_array', $my_array);
$templater->render();
It's all explained in that article.