Re: [PHP] Tracking IP Addresses

2003-10-04 Thread Mika Tuupola
On Fri, 3 Oct 2003, Stephen Craton wrote: I'm wanting to track IP addresses by pinpointing their geological location (country and whatever) but I have no idea how to go about doing this. I've been searching on the net and PHP websites all day but with no luck. Can anyone point me towards a

RE: [PHP] Tracking IP Addresses

2003-10-04 Thread Mika Tuupola
On Fri, 3 Oct 2003, Larry Rosenman wrote: IP's are not locked to a geographical area. Period. APNIC, RIPE, ARIN and LACNIC store country information on assigned ip network blocks like this: -cut- apnic|MO|asn|4609|1|19950615|allocated apnic|KR|asn|4670|1|19950616|allocated

Re: [PHP] Tracking IP Addresses

2003-10-04 Thread Mika Tuupola
On Sun, 5 Oct 2003, Mika Tuupola wrote: On Fri, 3 Oct 2003, Stephen Craton wrote: I'm wanting to track IP addresses by pinpointing their geological location (country and whatever) but I have no idea how to go about doing this. I've been searching on the net and PHP websites all day but

[PHP] Tracking IP Addresses

2003-10-03 Thread Stephen Craton
Hello, I'm wanting to track IP addresses by pinpointing their geological location (country and whatever) but I have no idea how to go about doing this. I've been searching on the net and PHP websites all day but with no luck. Can anyone point me towards a tutorial site or explain to it for me?

Re: [PHP] Tracking IP Addresses

2003-10-03 Thread Robert Cummings
On Fri, 2003-10-03 at 16:19, Stephen Craton wrote: Hello, I'm wanting to track IP addresses by pinpointing their geological location (country and whatever) but I have no idea how to go about doing this. I've been searching on the net and PHP websites all day but with no luck. Can anyone

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Stephen Craton
-Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 3:23 PM To: Stephen Craton Cc: PHP List Subject: Re: [PHP] Tracking IP Addresses On Fri, 2003-10-03 at 16:19, Stephen Craton wrote: Hello, I'm wanting to track IP addresses by pinpointing

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Duncan
Thanks, but how would I get the results in PHP? What I'm trying to do involves getting the user's IP address then finding where they are, like what country, and then showing content specific stuff. Good luck tracking AOL IPs :) They seem to use a common pool across the world. That said, I

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Stephen Craton
, 2003 3:31 PM To: Stephen Craton Cc: PHP List Subject: RE: [PHP] Tracking IP Addresses Thanks, but how would I get the results in PHP? What I'm trying to do involves getting the user's IP address then finding where they are, like what country, and then showing content specific stuff. Good luck

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Larry Rosenman
://www.melchior.us -- http://www.melchior.us/portfolio -Original Message- From: Duncan [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 3:31 PM To: Stephen Craton Cc: PHP List Subject: RE: [PHP] Tracking IP Addresses Thanks, but how would I get the results in PHP? What I'm trying to do involves

Re: [PHP] Tracking IP Addresses

2003-10-03 Thread Marek Kilimajer
Stephen Craton wrote: So I'm going to have to use a 3rd party script? Is there not a way to make the IP tracker on your own in any way? You can write a script that queries your own ip2geodata database but you would need the database in the first place. -- PHP General Mailing List

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Chris W. Parker
Stephen Craton mailto:[EMAIL PROTECTED] on Friday, October 03, 2003 1:19 PM said: I'm wanting to track IP addresses by pinpointing their geological location (country and whatever) but I have no idea how to go about doing this. I've been searching on the net and PHP websites all day but

Re: [PHP] Tracking IP Addresses

2003-10-03 Thread Evan Nemerson
Well you're going to need to play with ARIN, APNIC, and RIPE. First, figure out which group the IP belongs to, then query their database. That will provide a good hint as to the location, but it's far from perfect. You only get the location of the people who own that block. So everyone w/

Re: [PHP] Tracking IP Addresses

2003-10-03 Thread Cameron Metzke
Well couldnt this be done with the majority of browsers, im not sure myself but i remember reading somewhere that you can ask the browser where the the user is ?. I think it has something to do with when the system is setup the country is recorded ? might be a windows only thing again im not sure.