View Single Post
Old 03-27-2009, 06:17 PM   #4 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

PHP Code:
ob_start();
extract($templateVarsEXTR_PREFIX_SAME'some_prefix_');
include 
'template_file.html';
$__parsed ob_get_contents();
ob_end_clean();

echo 
$__parsed
I forcedly used include there instead of include_once, for the case in which I need to include multiple template files, but with different contents (eg.: boxes of content).
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote
The Following User Says Thank You to xenon For This Useful Post:
hello-world (03-29-2009)