Hi,

I'm having problem to get the result of a <SELECT ... MULTIPLE> field in a
form.
something like this works file :
   <FORM name=FormName method=post>
     <SELECT name=aSelectField size=4 multiple>
         <OPTION value=one>first</OPTION>
         <OPTION value=two>second</OPTION>
         <OPTION value=three>third</OPTION>
       </SELECT>
   </FORM>
   <P>aSelectField2 : <%
     @selectFields = $Request->Params('aSelectField');
     print join ',', @selectFields
   %>
   </P>

But I also need to upload a file with this form.
When I add ENCTYPE="multipart/form-data" to the form tag,
I can only retrieve the first selected item from aSelectField.
It's like the wantarray doesn't work anymore.

Does anybody know how to fix this ?

Anton.

-----------------------------------------------------
- WestSite NV - I N T E R N E T  S O L U T I O N S  -
-----------------------------------------------------
Torhoutse Steenweg 337
8200 Brugge
BELGIUM
T.+32 50 39 41 41
F.+32 50 39 41 43
mailto:[EMAIL PROTECTED]
-----------------------------------------------------
http://www.westsite.be
http://wap.westsite.be
-----------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to