in reply to Edit page with checkboxes
use strict; use CGI qw(:standard); my @box = (qw(SSD PERS SS), 'CHILD SUP'); print header, start_html, start_form, checkbox_group( -name=>'type', -values=>\@box, ), p(submit('Go')), end_form, ; if (param('Go')) { print p(hr), 'You picked:', ul(li[param('type')]), ; } print end_html;
jeffa
L-LL-L--L-LL-L--L-LL-L-- -R--R-RR-R--R-RR-R--R-RR B--B--B--B--B--B--B--B-- H---H---H---H---H---H--- (the triplet paradiddle with high-hat)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (jeffa) Re: Edit page with checkboxes
by Jaap (Curate) on Aug 04, 2002 at 22:09 UTC | |
by jeffa (Bishop) on Aug 04, 2002 at 22:30 UTC |