- or download this
my $request=$ENV{'QUERY_STRING'};
$request=~/([-\w_]+\.($ext))/g;
my $file=$1;
- or download this
my ($file) = $ENV{'QUERY_STRING'} =~ /([-\w_]+\.($ext))/g;
- or download this
foreach(@code){
$_=~s/</</g;
$_=~s/>/>/g;
}
- or download this
foreach(@code){
s/</</g;
s/>/>/g;
}