-- ----------------------------
-- Table structure for bannedips
-- ----------------------------
DROP TABLE IF EXISTS `bannedips`;
CREATE TABLE `bannedips` (
`ip_int` int(10) NOT NULL,
`ip` varchar(16) NOT NULL,
PRIMARY KEY (`ip_int`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
I have this but i keep getting an error and MySQL stops executing SQL
Can someone please help me?






