- or download this
my @fields = $INPUT->param('titles');
foreach my $f (@fields) {
#do something with $f...
}
- or download this
my $title = $INPUT->param("titles")[5];
- or download this
my $title = @{$INPUT->param("titles")}[5];
- or download this
my @fields = $INPUT->param('titles');
my $title = $fields[5];