<?
 
 
include_once "basic_template.php";
 
 
$template = new basic_template;
 
 
$template->dir = '.';
 
 
$template->set('news_headline' ,  'Basic Template Example');
 
$template->set('news_author' ,  'Quoc Bao');
 
$template->set('news_author_mail' ,  '[email protected]');
 
$template->set('news_lite_content' ,  'Basic example');
 
$template->set('news_content' , "Hello , this is a very easy example<br>\n");
 
 
$template->output('sample_1.html');
 
 
echo $template->result;
 
 
?>
 
 |