Changeset 467 for trunk/examples/example_attributes_loop.php
- Timestamp:
- 01/16/08 17:27:18 (11 months ago)
- Files:
-
- trunk/examples/example_attributes_loop.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/example_attributes_loop.php
r453 r467 35 35 $heroes = array( 'Superman', 'Batman', 'Green Lantern', 'Robin', 'Wonder Woman', 'Powergirl' ); 36 36 $tmpl->addVar( 'row', 'hero', $heroes ); 37 38 $tmpl->addVar( 'list', 'hero', $heroes ); 39 $tmpl->addVar( 'list', 'rows', 8 ); 37 40 41 $tmpl->addVar( 'list2', 'hero', $heroes ); 42 $tmpl->addGlobalVar( 'global_rows', 19 ); 38 43 $tmpl->displayParsedTemplate(); 39 44 ?>
