From: "Richard Whitney" <[EMAIL PROTECTED]>
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!

You forgot the set_time_limit(0) line at the beginning... :)

---John Holmes...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to