| 
<?php
 include("template.class.php");
 
 $template_vars=array(
 'content_title' => 'Test Title',
 'content_body' => 'Test Body', // If you write 'test_field'=>'file_name.php', this will include a php file into this field.
 'content_who_added' => 'Administrator',
 'content_added_date' => '28.01.2008',
 'content_added_time' => '00:21:00',
 );
 
 $template=new makeTemplate();
 $template->loadTemplateFile("content_body.html");
 $template->putTemplateValues($template_vars);
 $template->showPage();
 
 ?>
 
 |