NTLDR, that's great -- thanks for the clarification. So would the approach be to fetch some tamplates and store em in evaled vars and finally concatenate them for final output, as in:
PHP Code:
eval('$pagehead = fetch_template("headinclude");');
eval('$pagecontent = fetch_template("anytemplate");');
$staticcontent = "<br / ><b>This part is static</b><br />";
$all = $pagehead.$pagecontent.$staticcontent;
print_output($all);
Would that be the correct way of doing things?