This commit is contained in:
Suvodip
2024-10-21 16:23:40 +05:30
parent 083494bd4d
commit f7306b70c8
7 changed files with 312 additions and 80 deletions

6
geoip_domain.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
$isp = geoip_isp_by_name('www.example.com');
if ($isp) {
echo 'This host IP is from ISP: ' . $isp;
}
?>