Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool to Trace an HTML Post Submission?

Is there a way (or tool) that helps seeing (or logging) exactly what is being sent in an HTML <FORM METHOD=POST> in response to clicking a <INPUT TYPE="submit"> button?

like image 522
ateiob Avatar asked Aug 26 '11 21:08

ateiob


2 Answers

Several

  • Firebug for Firefox
  • Chrome Developer Tools
  • Safari Developer Tools
  • IE9 Developer Tools
  • Opera Dragonfly
  • Charles
  • Fiddler
like image 72
Quentin Avatar answered Oct 05 '22 06:10

Quentin


http://www.wireshark.org/ Works well. It tracks all network traffic and can process most (all?) protocols. You should see this as an HTTP request.

like image 44
George Avatar answered Oct 05 '22 07:10

George