welcome to ...

pure-PHP templating

Hi. Here is a set of simple php scripts introdusing the idea -

" php - is a great template engine itself "

Better start looking into their source and try to guess what you'll see visiting them in your browser.

home master.php control.php top.php foot.php derived.php block.php helper.php templatelib.php multipass.php
<?
$ar 
= array(
    
'title'=>'templating test',
    
'items'=>array(
        
0=>array('name'=>'item1''desc'=>'item 1 desc'),
        
1=>array('name'=>'item2''desc'=>'item 2 desc'),
        
2=>array('name'=>'item3''desc'=>'item 3 desc'),
        
3=>array('name'=>'item4''desc'=>'item 4 desc'),
    ),
    
//'items' => false,
    
'mail'=>'test@test.com'
);