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

  • Comment on Re: sending values from checkboxes to another script

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
    It's simple and it works fine. Thanks a lot Sören:)