On Nov 12, 2007 9:38 PM, Mag Gam <[EMAIL PROTECTED]> wrote:
> I am new to mod_perl, and I am trying to pass data thru a HTML form. I am
> able to get all data with the exception of "SELECT MULTIPLE"
>
> Can someone please provide a good example with this?

use CGI;
my $q = CGI->new;
my @values = $q->param('foo');

Or use Apache2::Request, which looks almost the same.

- Perrin

Reply via email to