View Single Post
Old 09-04-2008, 07:06 AM  
Martin Luther Ping
So Fucking Banned
 
Join Date: Aug 2008
Location: Hawaii
Posts: 49
using maxmind

Code:
<?php 
include("geoipcity.inc"); 
include("geoipregionvars.php"); 
$gi = geoip_open("GeoLiteCity.dat",GEOIP_STANDARD); 

$record = geoip_record_by_addr($gi, $_SERVER['REMOTE_ADDR'] ); 

if ( $record ) { 
  print $record->city . "\n"; 
  print $record->region . "\n"; 
} else { 
  print "My other city\n"; 
} 

geoip_close($gi); 
?>
Martin Luther Ping is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote