Are there any further plans on improving the profiler output in PHPED?
When I'm profiling our large projects which usually end up with 50-100 mysql queries per generated page I cannot track down the "sources of evil"
Why?
Usually we use a database abstraction layer which is in its simplest form a wrapper function to mysql_query(). Now, if I profile a PHP script which instantiates many components which all use this (singleton) abstraction the profiler luckily tells me that mysql_query (or better to say the wrapper function call) takes the longest time to execute. wow

database calls are in fact the bottleneck of most database driven websites.
What I need is a
call stack tree for exactly these function calls, to see where the calls to the database wrapper originate from (component xy in our case).
Are there any plans on implementing this behavior into PHPED?
btw: keep on the great work on PHPED, love this product!