tags:

views:

38

answers:

3

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!

A: 

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

Sarfraz
+1  A: 

Temperdata is a great tool for that in firefox.

Philip Daubmeier
Hope I didnt misunderstand your question... :)
Philip Daubmeier
No, you didn't. Temperdata would definetly do the job, but as I already use Firebug, it is easier with it.Thanks!
alesch
+1  A: 

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.

Cahlroisse