in reply to sending values from checkboxes to another script
use CGI; # load CGI routines
my $query = CGI->new; # create new CGI object
my @ch1 = $query->param( 'ch1' ); # get contents of field ch1 as an array
et voilà.
Cheers, Sören
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: sending values from checkboxes to another script
by nejcPirc (Acolyte) on Oct 11, 2004 at 12:36 UTC |