Learn how to IP ban people Admin Section Included
Ok so first we need to do some things like creat a table for the ip's to be sent to. Use the flowing code
CREATE TABLE `ip` (
`id` BIGINT( 25 ) NOT NULL AUTO_INCREMENT ,
`ip` VARCHAR( 25 ) NOT NULL ,
`banned` ENUM( 'yes', 'no' )...