I want to know what is the best package to detect country which user is visiting from?
I am using php/mysql..
I want to know what is the best package to detect country which user is visiting from?
I am using php/mysql..
I think there is not a guaranteed way but there are some options:
HTTP_ACCEPT_LANGUAGE
header($_SERVER
)You can download the MaxMind GeoLite Country database, and use that to lookup the IP of user to determine their country.
There are paid versions of that database, but I've found the accuracy of the free database more than sufficient.