@brk buyur hocam.



DNSBL Lookup - IP Blacklist



Lutfen IP adresi yazarak sorgulayiniz.



IPv4:





$ipler = file_get_contents("proxy.txt");
$ipler = explode("\n", $ipler);

$ip = $_GET['ip'];

if (in_array($ip, $ipler)) {
$sira = (array_search($ip, $ipler)) + 1;
echo count($ipler)." IP kayıtlı. IPsi $sira. satırda var.";
} else {
echo "IP, listede yok.";
}

?>