<?php
require('class.template.php');
$tst = new thorpesystems_template();
$tst->load('example.html');
$tst->parse('head',array('title'=>'thorpesystems'));
$tst->parse('user_details',array('name'=>'boo','pass'=>'tester','mail'=>'[email protected]'));
$tst->parse('user_details',array('name'=>'bob','pass'=>'tester','mail'=>'[email protected]'));
$tst->parse('user_details',array('name'=>'tai','pass'=>'tester','mail'=>'[email protected]'));
$tst->parse('foot');
$tst->render();
?>
|