[thelist] Multiple Select??

Carl-Johan Kihlbom div at newcode.se
Fri Sep 21 10:09:43 CDT 2001


>
>> I am creating a form to be used in a simple PHP/email
>> app. Everything seems to be working well except that my multiple
>> select lists seem to pass only the first value in the list.  Please
>> see the code below:
>>
>>        <select name="Type_of_Event" size="6" multiple>

You should use <select name="Type_of_Event[]" size="6" multiple>. Then 
the values will be stored in the array $Type_ofEvent.

/ Carl-Johan




More information about the thelist mailing list