Process a SELECT MULTIPLE [POST]

I have a problem with processing a Select Multiple:


<form method=POST...>
<select name='region' multiple>
<option value=1> bla bla
<option value=2> bla bla
<option value=3> bla bla
</select>
</form>

When selected more than one option, the form sends only one value (of the last selected)
region=3
It is not even an array. I am stuck here, damn. :wink: I thought this would be simple and clear, but not.
What to do?!? I can’t use checkboxes because I’ll have many choices.

Any suggestions?

Hi. This:


<select name="region[]" multiple>

…should give you the $post values in an array.

worked. thanks a lot.