<?php
$arr = array("t","e","s","t");
for($i=0;$i<5;++$i){
 for( ;list($key,$val)=each($arr); )
  print $val;
 print "<BR>\n";
 reset($arr);
}
?>