| 
<?php
include_Once("class.template.php");
 
 $tpls = new template;
 //                        "Any name"=> path to tpl file
 $tpls->tplsAreHere(Array("MAIN"=>"tutorial1.tpl"));
 
 // or 2 line in 1
 //$tpls = new template(Array("MAIN"=>"tutorial1.tpl"));
 
 //Value assig to template variables
 //                           "tpl_var_name"=>value
 $tpls->t["MAIN"]->Values(Array("UserName"=>"Sweetchack",
 "Time"=>Date("Y.m.d. H:i:s")));
 
 Print $tpls->GetOut("MAIN");
 ?>
 |