- or download this
sub IP_check {
my $_info2 = $ENV{'REMOTE_ADDR'};
...
return $info2;
}
}
- or download this
sub IP_check {
my $_info2 = $ENV{'REMOTE_ADDR'};
...
return "Bad IP address submitted";
}
}
- or download this
sub IP_check {
my $_info2 = $ENV{'REMOTE_ADDR'};
...
return $ip;
}
- or download this
sub IP_check {
my $_info2 = $ENV{'REMOTE_ADDR'};
...
"Bad IP address submitted";
}
}