My favorites | Sign in
Project Home Wiki
Search
for
Php  
PHP example client code
Updated Feb 4, 2010 by wtan...@yahoo.com

PHP Helper Function

function get_geo_ip_code($ipaddr)
{
   return file_get_contents("http://geoip.wtanaka.com/cc/$ipaddr");
}

PHP Example Code

get_geo_ip_code($_SERVER['REMOTE_ADDR']);
Comment by Roy.Wi...@gmail.com, May 2, 2009

This is my usage example, print country code beside the flag:

<?php

function get_geo_ip_code($ipaddr) {

return file_get_contents("http://geoip.wtanaka.com/cc/$ipaddr");
}

//PHP Example Code

$geoloc= get_geo_ip_code($SERVER['REMOTE_ADDR']); print $geoloc; print "<img src='http://geoip.wtanaka.com/flag/".$geoloc.".gif'>";

?>

Comment by umbrella...@gmail.com, Sep 25, 2009

I am seeking a form of discovering the area of the ip in a certain parents. in case somebody please knows post. if I discover I will post. even Teo


Sign in to add a comment
Powered by Google Project Hosting