in reply to CGI Forms
Maybe what you are looking for is this:
See the docs for more details on the param method.use strict; use CGI; my $q = CGI->new(); for my $p ( $q->param ) { my @vals = $q->param( $p ); print "$p: @vals<br>\n"; }
the lowliest monk
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI Forms
by perleager (Pilgrim) on Jun 09, 2005 at 18:40 UTC | |
by tlm (Prior) on Jun 09, 2005 at 18:57 UTC |