is there any way to see the functions that are called after pushing a link or a button in a web page done with PHP?
I user Firefox.
Regards
Javi
It it's your own code, open it in the editor.
If it's someone's else code, there is no way.
Not exactly sure what you're trying to achieve but you could install/configure a debugger module like xdebug.
Then you can either step through the code or use the profiler to see which functions have been hit (and how long they took).