| 
<?
//Example 3 - Complex Usage
 
 require('../class.DevTemplate.php');
 $template=new DevTemplate();
 $date=date("F j, Y, g:i a");//date to insert
 $template->express("_template.html","_page1.html","mainpart",array("hello=HELLO WORLD !","date=$date","title=This page title inserted dynamically..!"));
 
 ?>
 |