in reply to Re: Params in CGI
in thread Params in CGI

Also, How could I get the list of check boxes that has been checked in this? (If I manage the people to like checkboxes??)

Replies are listed 'Best First'.
Re^3: Params in CGI
by Anonymous Monk on Nov 20, 2008 at 16:05 UTC
    my @checked = grep { param($_) eq 'ON' } param();
      That assumes the value(s) are "ON", but they could be anything (and other variables could have same value).