I was wondering whether there is a tool available that one can use to debug their database and php applications. Equivalent of firebug or chrome developer extension for databases and php. (I would like to know whether some queries are executed or not exected)
Share
Use xdebug or a similar extension to debug PHP, in addition to the traditional
var_dumpand similar techniques.Turn on query logging to debug what your database does or doesn’t do.
To debug individual query execution, have the database
EXPLAINthe queries to you.