- or download this
The optional fifth argument is a pointer to an associative array
relating the checkbox values to the user-visible labels that will
be printed next to them (-labels).
- or download this
a pointer to an associative array
relating the checkbox values to the user-visible labels
- or download this
my %checkbox_items = (
a => 'BillJ may have been assigned as trustee to the security obje
+ct which gives him supervisor rights over all NDS objects',
...
c => 'BillJ may be the first man to orbit Mars on a unicycle',
d => 'BillJ may be just another Perl hacker',
);
- or download this
my @checkbox_values = keys %checkbox_items;
- or download this
print
start_html,
checkbox_group(
...
-linebreak => 1,
-labels => \%checkbox_items,
),
- or download this
<input type="checkbox" name="testing" value="a" />
BillJ may have been assigned as trustee to the security object which g
+ives him supervisor rights over all NDS objects
<br />
...
<input type="checkbox" name="testing" value="d" />
BillJ may be just another Perl hacker
<br />