Help for this page

Select Code to Download


  1. 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).
    
  2. or download this
    a pointer to an associative array
    relating the checkbox values to the user-visible labels
    
  3. 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',
    );
    
  4. or download this
    my @checkbox_values = keys %checkbox_items;
    
  5. or download this
    print
        start_html,
        checkbox_group(
    ...
            -linebreak => 1,
            -labels    => \%checkbox_items,
        ),
    
  6. 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 />