Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
CREATE TABLE `ip2city` (
`ip` varchar(15) NOT NULL default '0.0.0.0',
`city` varchar(50) default 'noname',
PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `ip2city` (ip2city.ip, ip2city.city) values ('127.0.0.','localhost');
INSERT INTO `ip2city` (ip2city.ip, ip2city.city) values ('192.168.','lan');
SELECT `city` FROM `ip2city` WHERE '127.0.0.1' REGEXP `ip` LIMIT 1;
SELECT `city` FROM `ip2city` WHERE '192.168.0.4' REGEXP `ip` LIMIT 1;