Well, you say you want to return the processing time of a MySQL query
via PHP, but then you go on to say that you do not want to do this in
PHP. :-)

I would recommend Jeremy Zawodny's mytop:

http://jeremy.zawodny.com/mysql/mytop/

Chris

--- Tularis <[EMAIL PROTECTED]> wrote:
> 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;

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

Reply via email to