I was wondering if anyone knew of a way to return the processing time of a mysql query via php.

And NOT using the

$starttime = time();
mysql_query($whatever);
$endtime = time();
$processingtime = $endtime - $starttime;

Does anyone???? please?


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to