Hey all!
If I have this in a form, how can I deal with the $_POST result if multiple items in the list are selected? :queasy: I've been searching the net for such answers, but I think I'm searching for the wrong things as I can't seem to find what I'm looking for.
From what I've tried just, only the last selected item in the list goes through on $_POST
I basically want a list of items, which would have a certain operation done on them if selected on the following page.. but need to get ALL of the selected items first!
Thanks 😃
<select name="var" size="3" multiple>
<option value="1">Value1</option>
<option value="2">Value2</option>
</select>