doforumda Posted November 18, 2009 Share Posted November 18, 2009 hi i need help to find users location through its ip address. how can i do this <?php //Gets the IP address $ip = getenv("REMOTE_ADDR") ; Echo "Your IP is " . $ip; ?> Quote Link to comment https://forums.phpfreaks.com/topic/181961-need-help-in-tracing-users-location-using-php/ Share on other sites More sharing options...
Alex Posted November 18, 2009 Share Posted November 18, 2009 You can use PHP geoip if your server has it installed. Otherwise there's a lot of APIs you can take advantage of. Quote Link to comment https://forums.phpfreaks.com/topic/181961-need-help-in-tracing-users-location-using-php/#findComment-959779 Share on other sites More sharing options...
doforumda Posted November 18, 2009 Author Share Posted November 18, 2009 You can use PHP geoip if your server has it installed. Otherwise there's a lot of APIs you can take advantage of. i want this for my website just to track the number of users by their location. so what will i do when i upload my website to a webserver. i mean i will intall geoip on my website server as well or i ll so something else. Quote Link to comment https://forums.phpfreaks.com/topic/181961-need-help-in-tracing-users-location-using-php/#findComment-959780 Share on other sites More sharing options...
Alex Posted November 18, 2009 Share Posted November 18, 2009 Do you just want to track this for personal knowledge just because you're curious? If that's the case it would really be easier to use some type of web analytic, personally I use Google Analytics, they'll give you that information and everything else you can think of. If you want the data to display it or something and you're going to go through with geoip just check out the manual, there are very clear examples such as this one here: geoip_country_code_by_name(). It's pretty straightforward. Quote Link to comment https://forums.phpfreaks.com/topic/181961-need-help-in-tracing-users-location-using-php/#findComment-959787 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.