in reply to How to take values from check box in CGI form?
I'm not sure I understand the question (given monarch's response). Does it help if I say that param() returns multiple values in list context? That is:
my $message_id = $q->param( 'address' );gives you only one message id, while:
my @message_ids = $q->param( 'address' );gives you all of the checked values.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to take values from check box in CGI form?
by monarch (Priest) on Jun 16, 2005 at 06:23 UTC | |
by Popcorn Dave (Abbot) on Jun 17, 2005 at 03:56 UTC |