View Single Post
  #2  
Old 07-29-2006, 01:56 PM
froggish froggish is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
froggish is on a distinguished road
Default

Hi

Use print_r($_POST); for printing out POST array. For that specific senario you can use this code

foreach($_POST as $key=>$value)
{
echo $key . "=" . $value . "<br>";
} -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - Print out all POSTs
View Single Post
  #2  
Old 07-29-2006, 01:56 PM
froggish froggish is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
froggish is on a distinguished road
Default

Hi

Use print_r($_POST); for printing out POST array. For that specific senario you can use this code

foreach($_POST as $key=>$value)
{
echo $key . "=" . $value . "<br>";
} -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote