Help for this page

Select Code to Download


  1. or download this
    $template->param(
       FILES => [ map +{ NAME => $_ }, @files ],
    );
    
  2. or download this
    my @files_param;
    for (@files) {
       push @files_param, { NAME => $_ };
    }
    $template->param(\@files_param);