Help for this page

Select Code to Download


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