Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    print "\n";
    
  2. or download this
    if($ENV{REMOTE_ADDR} =~ '10.10.0.1') {
    
    the code
    
    }
    
  3. or download this
    
    exit if ($ENV{REMOTE_ADDR} =~ '10.10.0.1');
    
  4. or download this
    unless ($ENV{REMOTE_ADDR} =~ '10.10.0.1') {
    
    the code
    
    }