Quote:
Originally Posted by Deaths
I understand the print_output part, as I am no noob to PHP.
What I did not understand, was if I have to define the $var, and if so, what should it contain, etc...
|
PHP Code:
eval('$var = "' . fetch_template('template_name') . '";');
$var as in a $varible. like lets say you want to use the postbit template once
PHP Code:
eval('$postbit = "' . fetch_template('postbit') . '";');
Now you can use $postbit in the template you are printing.