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 --