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 use Firefox. Regards Javi
No. PHP functions get executed on the remote server and whatever they produce gets sent to your browser. You can view the source of the page in your browser and see where that link/button is pointing, but because PHP is a server side language every function that runs is run on a computer that you don't really have access to.