On my actual site, I have something like this in effect.
I used the following code to achieve this effect:
(from my index, the title is the following)
return $dirgotronix.net[content/News]; // 1.724 sec.
Here's the code:
PHP Code:
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
// At the top of the page you're counting, put the following:
$begin_time = getmicrotime();
// And at the bottom, this:
$end_time = getmicrotime();
$load_time = $end_time - $begin_time;
echo number_format($load_time,3);
You might be able the hack it a bit to accomidate the forum. That only echos the number of seconds to 3 decimal places, but that's all I needed on my site. Hope it's of some use!