Help for this page

Select Code to Download


  1. or download this
            if ($block->match($row[$i])){
                print "IP address: $row[$i] is inside $block\n";
    ...
            else{
                print "IP address: $row is not inside $block\n";
            }
    
  2. or download this
            print "IP address: $row[$i] is ";
            if ($block->match($row[$i])){
    ...
                print "outside";
            }
            print " $block\n";