in reply to A newbie's CGI- kinda problem

Checkboxes are returned as lists. In order to get the values of a group of checkboxes named "list", you'd need:

@values = $q->param('list');

This is covered in the CGI.pm documentation.

Replies are listed 'Best First'.
RE: Re: A newbie's CGI- kinda problem
by mikkoh (Beadle) on May 26, 2000 at 18:35 UTC
    Thanks, but one problem is that I don't want to name any specific param, as the script is supposed to blindly go through them all never mind what they are. Thanks anyway - problem solved :) //mjh