PHP Classes

File: vendor/geoip/geoip/examples/netspeedcell.php

Recommend this page to a friend!
  Classes of Ganesh Kandu   kchat   vendor/geoip/geoip/examples/netspeedcell.php   Download  
File: vendor/geoip/geoip/examples/netspeedcell.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: kchat
Database driven PHP live chat system
Author: By
Last change:
Date: 6 years ago
Size: 238 bytes
 

Contents

Class file image Download
#!/usr/bin/php -q
<?php

include("../src/geoip.inc");

$gi = geoip_open("/usr/local/share/GeoIP/GeoIPNetSpeedCell.dat", GEOIP_STANDARD);

$netspeed = geoip_name_by_addr($gi, "24.24.24.24");

print
$netspeed . "\n";

geoip_close($gi);

?>