Bu Blogda Ara

5 Temmuz 2010 Pazartesi

Php ile istenmeyen ip leri banlamak


$ip = $_SERVER['REMOTE_ADDR'];
$ipArray = preg_replace("#\r\n?|\n#","",file('IP.txt'));
foreach ($ipArray as $ipTest) {
if (substr_count($ip, $ipTest) != "0") {
header('location: http://google.com');
die();
}
}

?>

Hiç yorum yok:

Yorum Gönder