I have looked everywhere... Does anybody know how to echo the time taken to execute a php script??
you have not looked in the php manual, check getmicrotime() and make sure you read it to the end.
Dominique
$time = microtime();
// Code here
$time2 = microtime(); $time = explode(" ", $time); $time2 = explode(" ", $time2); echo(($time2[1] - $time[1]) + ($time2[0] - $time[0]));
Cheers