Posted by Erfan Shirazi on 10/09/97 11:33
Hi all
I want to get all data passed on to a certain page, I use this to make
it happen:
foreach($_POST as $key => $tempvalue)
{
$cVariable .= $key."=".$tempvalue."&";
}
This works fine as long it is textfields etc...
I.e: $cVariable //Contains foobar=something&
But if it is multiple dropdown then it returns correct "key" but the
value will be "Array".
I.e: $cVariable //Contains foobar=Array&
Is there anyway I can get the values chosen instead of just "Array"?
Thx in advance
/Erfan
Navigation:
[Reply to this message]
|