Quote:
Originally Posted by UKBusinessLive
have you tried the code from TimberFloorAu??? above
Microtime is about the cleanest way of doing this.
Add this to very top of headerinclude ( i think ) above everything else ( must load first )
Code:
<?
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
?>
In footer add
Code:
<?
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf ('Generated in %f seconds.', $totaltime);
?>
I'll update the code later 
|
I tried that and it still counted up, uninstalled.