Server version: 5.5.5-10.1.26-MariaDB
"INSERT INTO iplist (ip, master, count) VALUES ('$ipget', '1', '1') ON DUPLICATE KEY UPDATE master=values(master) + 1, count=values(count) + 1";
CREATE TABLE IF NOT EXISTS `iplist` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`ip` varchar(255) NOT NULL,
`master` varchar(255) NOT NULL DEFAULT '0',
`vamps` varchar(255) NOT NULL DEFAULT '0',
`curzed` varchar(255) NOT NULL DEFAULT '0',
`count` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
When posting the IP to the server if its not in the database it will get a new entry
or if the IP is already in the database it will add +1 onto the master table and add +1 to the count
but the the min if its already in the database it is putting 2 onto the master row and 2 into the count row and then if it goes a 3ed time it just stays on 2
what i would like it to do is to add +1 each extra time its added into the database