Possible Duplicate:
IP to Country?
I am trying to get the country name with php by using
$country = file_get_contents("http://api.hostip.info/country.php?ip=".$_SERVER['REMOTE_ADDR']);
it is working fine for me (returns US). But when I used it on my website, for most of my users it is returning XX and that is not a country code. Is there any way I can get the country name with php ? PLEASE HELP