in reply to OT? Checkbox list with CGI/Javascript
For this I suggest you start by forgetting JavaScript, you don't need it. Then make use of the markup validator (you have syntax errors in your HTML). Then...
and<input type="checkbox" name="ids" value="1"> <input type="checkbox" name="ids" value="2"> <input type="checkbox" name="ids" value="3">
... use CGI; use Data::Dumper; my $cgi = CGI->new(); my @results = $cgi->param('ids');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: OT? Checkbox list with CGI/Javascript
by rashley (Scribe) on Nov 11, 2005 at 16:20 UTC | |
by Tanktalus (Canon) on Nov 11, 2005 at 17:04 UTC |