Thanks thevoids,
I see -- this script makes 2 timestamps: one at the beginning and one at the end of the script, and then calculates the time difference. That's simple enough that I should have thought of it.
Next though, I need to find out what constitutes 'fast'.
Any notion? Anyone?
-mgh faust
<?php
$timeparts = explode(" ",microtime());
$starttime = $timeparts[1].substr($timeparts[0],1);
$timeparts = explode(" ",microtime());
$endtime = $timeparts[1].substr($timeparts[0],1);
echo bcsub($endtime,$starttime,6)
?>