alesch
alesch

Reputation: 842

How can I debug a form?

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

Answers (3)

Cahlroisse
Cahlroisse

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

Philip Daubmeier
Philip Daubmeier

Reputation: 14934

Temperdata is a great tool for that in firefox.

Upvotes: 1

Sarfraz
Sarfraz

Reputation: 382686

If you meant server-side coding, you can not see that, you can only see html.

Upvotes: 0

Related Questions