Re: Form Submit Question and Apache::Request

2001-12-16 Thread Joe Schaefer
"El Capitan" <[EMAIL PROTECTED]> writes: > use Apache::Requst; > > sub handler() { > my $r = Apache::Request->new(shift); > my @list = $r->param('multi_list') || undef; ^^ scalar context is ruining your day :( Try this instead: my

Form Submit Question and Apache::Request

2001-12-16 Thread El Capitan
I have a form to send to a content handler and wish to use the HTML tag: One Two Three Four Five Six I have a handler like: ### package testform; use Apache::Requst; sub handler() { my $r = Apache::Request->new(shif