Quote:
Originally Posted by Zachery
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.
|
Ah, I see.
So, basicly, in the main template, I can use the $var which I used to "fetch" the template?
I can't try it now, but I think I understood it, thanks.