Help for this page

Select Code to Download


  1. or download this
    my %input = map { $_->$cgi->param($_) } $cgi->param();
    
  2. or download this
    my %input = map { $_ => scalar $cgi->param($_) } $cgi->param();
    
  3. or download this
    foreach my $key (keys %input) { 
     $input{$key} =~ tr/*//d; 
     # or whatever makes sense 
    }
    
  4. or download this
    tr/*//d for values %input;