How can I inspect form data being Posted? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:37:08Z http://stackoverflow.com/feeds/question/434528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted 2 How can I inspect form data being Posted? Unkwntech 2009-01-12T05:19:31Z 2009-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#434531 2 Answer by nshaw for How can I inspect form data being Posted? nshaw 2009-01-12T05:21:40Z 2009-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#434535 1 Answer by shahkalpesh for How can I inspect form data being Posted? shahkalpesh 2009-01-12T05:25:07Z 2009-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 -2 Answer by Click Upvote for How can I inspect form data being Posted? Click Upvote 2009-01-12T05:48:00Z 2009-01-12T05:48:00Z <pre><code>&lt;?php print_r($_POST);?&gt; </code></pre> http://stackoverflow.com/questions/434528/how-can-i-inspect-form-data-being-posted/434559#434559 -1 Answer by James McMahon for How can I inspect form data being Posted? James McMahon 2009-01-12T05:48:28Z 2009-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>