Hi All,
I try to extract data from a multiple select form element.
How do I do this?
On the form I have a mulitple select (empty, here for illustration alone. On the page filled, of course):
<select name="activiteit" multiple size="8">
<option selected value=""></option>
<option selected value=""></option>
<option selected value
</select>
Then in the target page I have:
for ( $i = 0; $i < count($activiteit); $i++)
{
echo $activiteit[$i];
}
But this always gives me nothing, no matter what the input was!
Please? Any ideas!?
J.