CGI.pm does the trick for me, the multi values are seperated by \0

< select name="yadda" multi>
<option>yadda1
<option>yadda2
<option>yadda3
....
</select>

my $CGI = new CGI();
 %form_data = $CGI->Vars;

@options = split("\0",$form_data{'yadda'});

$options[0] = yadda1, $options[1] = yadda2  etc .

Not usable live code obviously, but you should see the idea...

-Chris
----- Original Message ----- 
From: "Dennis Stout" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Thursday, July 10, 2003 4:52 PM
Subject: Re: select multiple


>
> Interesting.
>
> So in mod_perl, I would use $r->args{__what__} to get to it?  Heh.
>
> I'll email the mod_perl list..
>
> Dennis
>


Reply via email to