Help for this page

Select Code to Download


  1. or download this
    my @cityKeys;
    my @distanceKeys;
    ...
        @distanceKeys = sort @distanceKeys;  #Sort the array
      }
    }
    
  2. or download this
    my @cityKeys     = sort grep { /city/     } @cgiParamKeys;
    my @distanceKeys = sort grep { /distance/ } @cgiParamKeys;
    
  3. or download this
    foreach (@cityKeys, @distanceKeys)
    
  4. or download this
    if (/city/ || /distance/)
    
  5. or download this
    foreach  (@cityKeys, @distanceKeys) {
      print $cgi->hidden($_ => $cgiParam{$_});
    }