I\'d like, for example, block every IP from base 89.95 (89.95..). I don\'t have .htaccess files on my server, so I\'ll have to do it with PHP.
.htaccess
$user_ip = $_SERVER['REMOTE_ADDR']; // get user ip $denyIPs = array("111.111.111", "222.222.222", "333.333.333"); if (in_array ($user_ip, $denyIPs)) { // blocked ip } else { // not blocked }