]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - examples/hit.php
WARNING: This is a broken revision!!!
[software/bife/bife-all.git] / examples / hit.php
index 9dae06df75656afbff5a7213d46a22bc879e6bf3..0f7ce4754b6bf7bbce787b178f609ae4514f2cf3 100644 (file)
@@ -37,14 +37,18 @@ 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"));
+        $hit->parseBuffered('cell', 'CELL', "$i,$j");
     }
-    $rows .= $hit->parse('row', array('ROW' => $cells, 'CACA' => 'fea'));
+    $hit->parseBuffered('row', 'ROW', $hit->popBuffer('cell'));
 }
-echo $hit->parse('body', array('ROWS' => $rows, 'TITLE' => 'HOLA MUNDO!!!'));
+echo $hit->parse(
+    'body',
+    array(
+        'ROWS' => $hit->popBuffer('row'),
+        'TITLE' => 'HOLA MUNDO!!!',
+    )
+);
 
 ?>