Hi,
A quick question - I got a form where I would like to include a select-box which allows multiple choices:
<select name="Test" size="5" multiple>
<option value="1">Value1</option>
<option value="2">Value2</option>
<option value="3">Value3</option>
<option value="4">Value4</option>
<option value="5">Value5</option>
<option value="6">Value6</option></select>
The problem is that I've not yet figured out how to take out all the selected choices into a variable.
I first thought the values would be put into a array and that I would be able to take it out with an foreach() loop but that doesn't work. Doing a foreach() loop on $HTTP_GET_VARS just yields the last value selected.
I just seem to be able to get the last value and not the rest.
Anyone being able to give a hand here?
Thanks in advance!
/Björn