> I tried Zend Optimizer, still same speed, i guess there could PHP tricks > to speed up things i am not aware of
Maybe putting PHP for loop into a function? :-)))
============================
<BODY>
Test list <?php print date; ?><P>
<UL>
<?php
function foo($n) {
for ($i = 0; $i < $n; ++$i) {
print $i;
}
}
foo(50);
?>
</UL>
</BODY>
