<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Match An IP Address To A Physical Location With PHP</title>
	<atom:link href="http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/feed" rel="self" type="application/rss+xml" />
	<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html</link>
	<description>From Cody Taylor.</description>
	<lastBuildDate>Thu, 13 Oct 2011 06:41:44 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: abcphp.com</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2937</link>
		<dc:creator>abcphp.com</dc:creator>
		<pubDate>Fri, 12 Jun 2009 11:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2937</guid>
		<description>&lt;strong&gt;Match An IP Address To A Physical Location With PHP &#124; tech stuff...&lt;/strong&gt;

Sometimes it’s useful to locate where a certain IP address is located. Usually this isn’t really that accurate but at least it gives you a general idea for stats or marketing research. I’ve written a simple php function that uses curl to query a IP add...</description>
		<content:encoded><![CDATA[<p><strong>Match An IP Address To A Physical Location With PHP | tech stuff&#8230;</strong></p>
<p>Sometimes it’s useful to locate where a certain IP address is located. Usually this isn’t really that accurate but at least it gives you a general idea for stats or marketing research. I’ve written a simple php function that uses curl to query a IP add&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subhankar Ray</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2910</link>
		<dc:creator>Subhankar Ray</dc:creator>
		<pubDate>Thu, 11 Jun 2009 15:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2910</guid>
		<description>Cody, 

Good information. Your are right this is a programmatic way to find out the geo location from IP. However, for a quick lookup one can type the IP address at the AAfter search box, it returns location, ISP info, and if the IP is trusted. 

Subhankar Ray
AAfter Search</description>
		<content:encoded><![CDATA[<p>Cody, </p>
<p>Good information. Your are right this is a programmatic way to find out the geo location from IP. However, for a quick lookup one can type the IP address at the AAfter search box, it returns location, ISP info, and if the IP is trusted. </p>
<p>Subhankar Ray<br />
AAfter Search</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cody Taylor</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2906</link>
		<dc:creator>Cody Taylor</dc:creator>
		<pubDate>Thu, 11 Jun 2009 12:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2906</guid>
		<description>@GoGoGa I should definitely do that. Good advice.</description>
		<content:encoded><![CDATA[<p>@GoGoGa I should definitely do that. Good advice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cody Taylor</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2905</link>
		<dc:creator>Cody Taylor</dc:creator>
		<pubDate>Thu, 11 Jun 2009 12:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2905</guid>
		<description>That does work. But the whole point is to do this in php for any ip address. Not get my own IP location.</description>
		<content:encoded><![CDATA[<p>That does work. But the whole point is to do this in php for any ip address. Not get my own IP location.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Smith</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2895</link>
		<dc:creator>Tony Smith</dc:creator>
		<pubDate>Thu, 11 Jun 2009 09:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2895</guid>
		<description>A similar operation could be performed in a better way at the private search engine site www.aafter.com, where you just need to type the phrase IP? and the search engine returns the physical location.

Tony Smith</description>
		<content:encoded><![CDATA[<p>A similar operation could be performed in a better way at the private search engine site <a href="http://www.aafter.com" rel="nofollow">http://www.aafter.com</a>, where you just need to type the phrase IP? and the search engine returns the physical location.</p>
<p>Tony Smith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GoGoGa</title>
		<link>http://codytaylor.org/2009/06/match-an-ip-address-to-a-physical-location-with-php.html/comment-page-1#comment-2894</link>
		<dc:creator>GoGoGa</dc:creator>
		<pubDate>Thu, 11 Jun 2009 06:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://codytaylor.org/?p=14116#comment-2894</guid>
		<description>You should add a curl timeout or your script will hang for a log time if the server is not available... had this problem with another webservice. ;)</description>
		<content:encoded><![CDATA[<p>You should add a curl timeout or your script will hang for a log time if the server is not available&#8230; had this problem with another webservice. ;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

