Okey .. so , i have a problem ... in one of my forms i have this element:
[HTML]
<select name="list" multiple="multi ple" size="10" >
<option value="Opt1">Op t1</option>
<option value="Opt2">Op t2</option>
<option value="Opt3">Op t3</option>
<option value="Opt4">Op t4</option>
</select>
[/HTML]
The user can and will select multiple items.
I see that when the form is submited the selected variabiles are passed like this:
page.php?list=O pt1&list=Opt2
How can i get through GET or POST all the selected options in the form after the user submits the form ?
[HTML]
<select name="list" multiple="multi ple" size="10" >
<option value="Opt1">Op t1</option>
<option value="Opt2">Op t2</option>
<option value="Opt3">Op t3</option>
<option value="Opt4">Op t4</option>
</select>
[/HTML]
The user can and will select multiple items.
I see that when the form is submited the selected variabiles are passed like this:
page.php?list=O pt1&list=Opt2
How can i get through GET or POST all the selected options in the form after the user submits the form ?
Comment