Help for this page

Select Code to Download


  1. or download this
            for ( my $i = 0; $i < @values; $i++ ) {
                $values[$i] = _clean_cgi_param( $values[$i] );
            }
    
  2. or download this
            my @cleaned_values;
            for $value ( @values) {
                push @cleaned_values, _clean_cgi_param($value);
            }