texuser74 has asked for the wisdom of the Perl Monks concerning the following question:
when i press the <disp button>, only those rows whose checkbox were selected should be displayed in the next page. please guide me how to do it in cgi-perl. my present code displays only the checkbox value1. Name1|Age1|Position1 checkbox 2. Name2|Age2|Position2 checkbox 3. Name3|Age2|Position3 checkbox <disp button>
where 'disp' is the value of the checkbox in the html form.my @cb = param('disp'); foreach my $cb (@cb) { print "You picked $cb.<br>\n"; }
pls let me know how to display the entire row.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Extracting data from a form
by davorg (Chancellor) on Mar 07, 2006 at 09:59 UTC | |
|
Re: Extracting data from a form
by pajout (Curate) on Mar 07, 2006 at 09:57 UTC |