gube has asked for the wisdom of the Perl Monks concerning the following question:
Great Monks,
In my @mailid i have more than 10 mailid's, i have to show in CGI form using checkbox, I used this below code to
It's working. In CGI form, checkbox i check more than one and click delete button, In another form i use param('address') I am getting only one value from the selected check box. I have to get all the checked box values to delete the mail id's from the database. please anyone help for the code.print map { qq{<tr><td><input type="checkbox" name="address" value="$_ +" /> $_</td></tr>} } @mailid;
Thanks in advance.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to take values from check box in CGI form?
by chromatic (Archbishop) on Jun 16, 2005 at 05:30 UTC | |
by monarch (Priest) on Jun 16, 2005 at 06:23 UTC | |
by Popcorn Dave (Abbot) on Jun 17, 2005 at 03:56 UTC | |
|
Re: How to take values from check box in CGI form?
by monarch (Priest) on Jun 16, 2005 at 04:34 UTC | |
|
Re: How to take values from check box in CGI form?
by gube (Parson) on Jun 16, 2005 at 05:36 UTC | |
|
Re: How to take values from check box in CGI form? [OT]
by reasonablekeith (Deacon) on Jun 16, 2005 at 07:42 UTC | |
by Tanktalus (Canon) on Jun 16, 2005 at 14:20 UTC |