How can I inspect form data being Posted? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:37:08Zhttp://stackoverflow.com/feeds/question/434528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted2How can I inspect form data being Posted?Unkwntech2009-01-12T05:19:31Z2009-01-12T05:48:28Z
<p>I am reverse engeneering an app and I need to see what is in the post data without viewing the form source, is a there a decent app/plugin to see what is being posted?
<br /><br />Any Browser on Windows
<br />I'm looking for something other then packet sniffing.</p>
http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted/434531#4345312Answer by nshaw for How can I inspect form data being Posted?nshaw2009-01-12T05:21:40Z2009-01-12T05:21:40Z<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> in conjunction with Firefox.</p>
http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted/434535#4345351Answer by shahkalpesh for How can I inspect form data being Posted?shahkalpesh2009-01-12T05:25:07Z2009-01-12T05:25:07Z<p>Fiddler for Internet explorer.</p>
http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted/434558#434558-2Answer by Click Upvote for How can I inspect form data being Posted?Click Upvote2009-01-12T05:48:00Z2009-01-12T05:48:00Z<pre><code><?php print_r($_POST);?>
</code></pre>
http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted/434559#434559-1Answer by James McMahon for How can I inspect form data being Posted?James McMahon2009-01-12T05:48:28Z2009-01-12T05:48:28Z<p>Also for Firefox, there are plugins named <a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HTTPfox</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">Tamperdata</a> that allow you to do more with POST data then firebug. I personally have all three on my work computer.</p>