Database and php debugger

I was wondering if there is an available tool that you can use to debug your database and php applications. Equivalent to firebug or chrome extension for databases and php. (I would like to know if some requests are being executed or not)

+3
source share
2 answers

Use xdebug or a similar extension to debug PHP in addition to traditional var_dumpand similar methods.

Turn on query logging to debug what your database is doing or not doing.
To debug individual queries, request your EXPLAINqueries .

+2
source

PhpEd is awesome! You can hardly get out of bed without him these days, lol

+1
source

All Articles