Help for this page

Select Code to Download


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