Reputation: 842
I'd like to see what a website is sending when I submit a form.
Using Firebug I can see that it is regular POST form.
I'm interested in the coding of the form fields.
Thanks in advance!
Upvotes: 4
Views: 10621
Reputation: 536
You're almost there already. Just go to the "Net" tab in firebug (you may have to enable it by click the small arrow next to the word "Net"), and then submit the form. The Net tab will catch the post and show you the headers in the "Headers" section and the actual post data in the "Post" section.
Upvotes: 6
Reputation: 382686
If you meant server-side coding, you can not see that, you can only see html.
Upvotes: 0