Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Anyone know how to peak inside form submissions?
#5
Edit a copy of the page and make the form action a script that you control. In the new receiving script, print out the submitted values. How you do that depends on the language. Using PHP as the receiving language, print out all the values of $_POST[] using something like this:
echo "
    \n";
    foreach ($_POST as $key => $value) {
    echo "
  • $key = $value
  • \n";
    }
    echo "
\n";
Reply


Messages In This Thread
Re: Anyone know how to peak inside form submissions? - by TheTominator - 09-29-2006, 10:24 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)