| // +--------------------------------------------------------------------+ // // $Id$ // // This is a simple test and example of HTML_Template_HIT $tmp = ini_get('include_path'); ini_set('include_path', "../src:$tmp"); unset($tmp); umask('002'); require_once 'HTML/Template/HIT.php'; $hit =& new HTML_Template_HIT('hooks'); $rows = ''; for ($i = 0; $i < 20; $i++) { $cells = ''; for ($j = 0; $j < 20; $j++) { $cells .= $hit->parse('cell', array('CELL' => "$i,$j")); } $rows .= $hit->parse('row', array('ROW' => $cells, 'CACA' => 'fea')); } echo $hit->parse('body', array('ROWS' => $rows, 'TITLE' => 'HOLA MUNDO!!!')); ?>