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 |