Does anyone has already creates a program tha locates the location of a IP-adress. I have created a program that extract the time,date,url, refer URL and IP-adress of the visitors on a website from a log-report provided by the host of the site.
There are some websites where you can enter a IP-adress, and returns the location (Country, state,city) of that IP adress.
I want to call a site that gives this information and automaticly add it in the database. Does anyone knows such a site. All the sites I found show the result on there site, but how can I extract it, so I can import the data?
Ik know there are some sites that give this information for free if you add a little script on the pages of your site. But it would be nice if I can make it myself, so I can use that info.
Thanks,
Marc
IP locator
-
- Posts: 1163
- Joined: Mon Oct 17, 2005 5:41 am
- Location: Belgium
- Contact:
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
-
- Posts: 1163
- Joined: Mon Oct 17, 2005 5:41 am
- Location: Belgium
- Contact:
Thanks Antonio,
I already found some free database on the net which are updated each month. The have the IP info and locations of that IP. I even found one wich holding the city info but it's a .dat-file than only can be read with API-function you have to call from you program.
This is a example for C, but hou can I implement this?
Regards,
Marc
I already found some free database on the net which are updated each month. The have the IP info and locations of that IP. I even found one wich holding the city info but it's a .dat-file than only can be read with API-function you have to call from you program.
This is a example for C, but hou can I implement this?
Code: Select all | Expand
#include <GeoIP.h>
int main (int argc, char *argv[]) {
GeoIP * gi;
gi = GeoIP_new(GEOIP_STANDARD);
printf("code %s\n",
GeoIP_country_code_by_name(gi, "yahoo.com"));
}
Regards,
Marc
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
Marc,
For Harbour and FWH:
For Harbour and FWH:
Code: Select all | Expand
function Main()
MsgInfo( Country_Code( "yahoo.com" ) )
return nil
#pragma BEGINDUMP
#include <hbapi.h>
#include <GeoIP.h>
HB_FUNC( COUNTRY_CODE )
{
GeoIP * gi = GeoIP_new( GEOIP_STANDARD );
hb_retc( GeoIP_country_code_by_name( gi, hb_parc( 1 ) ) );
}
#pragma ENDDUMP
-
- Posts: 1163
- Joined: Mon Oct 17, 2005 5:41 am
- Location: Belgium
- Contact:
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
- RAMESHBABU
- Posts: 632
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
- Been thanked: 5 times
-
- Posts: 1163
- Joined: Mon Oct 17, 2005 5:41 am
- Location: Belgium
- Contact: