On Sun, 06 Jan 2008 19:54:05 +0100, "Rik Wasmus"
<luiheidsgoeroe@hotmail.com> wrote:
>microtime(true);, check the output :P
Yup :-) This looks more usable:
$starttimer = time()+microtime();
// run script code here
$stoptimer = time()+microtime();
$timer = round($stoptimer-$starttimer,4);
echo "Page created in $timer seconds.";