Tako i ja radim. Dakle kreiras tabelu tipa:
Kôd:
create table geoip(
id int unsigned primary key not null auto_increment,
ip_address varchar(15) not null,
country varchar(255) not null,
country_code char(2) not null,
region char(2) not null,
city varchar(255) not null,
postal_code varchar(6) not null,
latitude float(10,4) not null,
longitude float(10,4) not null,
dma_code tinyint unsigned not null,
area_code tinyint unsigned not null);
i vozi
