insert ip address in mysql

Solutions on MaxInterview for insert ip address in mysql by the best coders in the world

showing results for - "insert ip address in mysql"
Christian
28 Jul 2019
1-- `ip_address` int(4) unsigned NOT NULL
2INSERT INTO my_table (`ip_address`) VALUES (INET_ATON("127.0.0.1"));
3SELECT INET_NTOA(ip_address) as ip FROM my_table;
4-- php
5$ipaddress = $_SERVER['REMOTE_ADDR'];  
6var_dump(ip2long('123.63.153.253'));	-- 2067765757
7var_dump(long2ip(2067765757));			-- "123.63.153.253"