Hi:
Could someone tell me if there is a php-mysql function to mesure the performance of a query?
What I want is to be able to echo the query time values on any certain script.
Thank you! 🙂
I think there is no function like that..
But you can get values by using time() or microtime() and measure the query length by adding at the start and at the end of mysql_query() function...
But I think you've already known it 🙂