Help for this page

Select Code to Download


  1. or download this
    foreach $line (@allow_edit){ .... }
    
  2. or download this
    my @loop;
    #fill in the array @loop with hash references from @allow_edit...
    ...
        my($name, $value) = split /=/,$_; 
        push @loop, {$name=>$value};
    }
    
  3. or download this
    <!-- start of loop -->
    <TMPL_LOOP NAME="loop">
    ...
                    </tr>
    </TMPL_LOOP>
    <!-- end of loop -->
    
  4. or download this
    my @loop;
    #fill in the array @loop with hash references from @allow_edit...
    ...
        my($name, $value) = split /=/,$_;
        push @loop, {part1=>$name, part2=>$value};
    }