Is there a function to measure how long time in seconds the script has taken to execute?
Thanks Henrik
An old trick i use in BASIC is:
<? $timeofstart = time();
/ lots of time intensive code /
$timeofstop = time();
$timetaken = $timeofstop-$timeofstart; ?>
also I believe there was an excllent article posted to phpbuilder discussin this very issue.