Thanks, but this is the bits I don't understand
Could you help me out with the coding please (I don't get what to put 🙁 )
Also, yes I do have MYSQL
Edit: Will the MYSQL tables be something like this:
CREATE TABLE `results` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`option` varchar(255) NOT NULL,
`count` bigint(20) NOT NULL DEFAULT '0',
KEY `id` (`id`)
)
CREATE TABLE `ips` (
`ip` VARCHAR( 255 ) NOT NULL ,
`time` INT NOT NULL
)