On Saturday 15 December 2007 11:58:12 am jagdish eashwar wrote:
> Hi,
>
> The Catalyst Tutorial shows how to retrieve single values from a form.
>
> Example:- my $title = $c->request->params->{title} || '';
>
> How can I retrieve multiple values from a selection list into an array?
See the perldoc for Catalyst::Request -- the 'param' method comes in handy
here.
@values = $c->req->param('whatever');
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[EMAIL PROTECTED]/
Dev site: http://dev.catalyst.perl.org/