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