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