Anyone interested in seeing how fast your server can serve up a 6.5MB file?
Run this:
<?
$start = time();
echo $start;
echo '<br><br>';
$i = 1;
while($i < 1000001){
echo $i.' ';
$i++;
}
$end = time();
$total = $end - $start;
echo '<br><br>';
echo $total;
?>
Just a little fun!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

