tags:

views:

53

answers:

2

Hi,

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

+1  A: 

It it's your own code, open it in the editor.
If it's someone's else code, there is no way.

Col. Shrapnel
+2  A: 

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).

VolkerK