<?PHP

    
include "Template_/Template_.class.php";

    
$tpl = new Template_;
    
$tpl->define( array("index" => "test.tpl") );

    
$tpl->loopLoad("list");

    
$test_str= array( "1test""test2""te3st""tes5t" );
    
    for( 
$i $i 4$i++ ){

        
$tpl->loopPushAssign
            array(
                
"no" => $i,
                
"name" => $test_str[$i]
            )
        );

    }
    
$tpl->print_("index");

?>