+ Reply to Thread
Results 1 to 4 of 4
-
10-14-2009 02:11 PM #1
- Join Date
- Jul 2009
- Location
- United Kingdom
- Posts
- 489
- Downloads
- 0
- Uploads
- 17
- Blog Entries
- 2
Geographical location of visitors
Maybe some of you want to use the geographical location of visitors, for different purposes. For this you need to process geographical location from one of the sites have a database that provides information approximate.
In this article we will draw the country (and city) of origin and geographical location on IPinfodb
In one of our recent articles we have learned how to take over a page's response. In this article we learned when we use the function to retrieve the site's response.
Code:
<?php
function getGeoLocation()
{
$response = getResponsePage("http://ipinfodb.com/ip_query.php?ip=".$_SERVER['REMOTE_ADDR']);
preg_match("/<Latitude>(.*?)<\/Latitude>/",$response,$lat);
preg_match("/<Longitude>(.*?)<\/Longitude>/",$response,$long);
$location = $lat[1].",".$long[1];
return htmlspecialchars($location);
}
?>
To find out the geographic location all you have to do is to appeal getGeoLocation function ().
Code:
<?php
function getGlobalLocation()
{
$response = getResponsePage("http://ipinfodb.com/ip_query.php?ip=".$_SERVER['REMOTE_ADDR']);
preg_match("/<CountryName>(.*?)<\/CountryName>/",$response,$country);
return htmlspecialchars($country[1]);
}
?>
To find the location of the world (country) will have to resort getGlobalLocation function ().
-
10-15-2010 11:46 AM #2
Junior Member
- Join Date
- Oct 2010
- Posts
- 15
- Downloads
- 0
- Uploads
- 0
Thank YOu.....This is very good....I will surely use this
-
04-24-2011 10:10 AM #3
Junior Member
- Join Date
- Dec 2009
- Posts
- 9
- Downloads
- 0
- Uploads
- 0
Another option would be to use the google maps API to get exact locations via longitude and latitude
-
08-10-2011 08:06 AM #4
Junior Member
- Join Date
- Aug 2011
- Posts
- 7
- Downloads
- 0
- Uploads
- 0
this is good..nice..i will work on it...
Similar Threads
-
10,000 Unique Visitors - $6.99
By smartadspace in forum Buy, Sell or TradeReplies: 18Last Post: 04-10-2010, 03:01 PM -
Using SEO and Google Trends got me over 12,000 visitors in 24 hours
By articleenterprise in forum Search Engine OptimisationReplies: 0Last Post: 03-30-2009, 06:59 AM -
50,000 visitors to your site - FREE!
By flishess in forum Buy, Sell or TradeReplies: 0Last Post: 09-27-2005, 02:40 AM -
I'm Selling text ads on a pr 4/10 site. 8,700+ visitors monthly.
By tesla in forum Buy, Sell or TradeReplies: 0Last Post: 07-12-2005, 08:18 AM -
PR 4/10 text link space for sell. over 7000 visitors monthly
By tesla in forum Buy, Sell or TradeReplies: 0Last Post: 05-14-2005, 03:43 AM


LinkBack URL
About LinkBacks

Reply With Quote



Bookmarks