Enter your name to send a positive message to the next visitor. Only after that you will receive a positive message from the previous visitor. https://www.victorgiers.com/pronoia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 525B

Pronoia

Insert MySQL credentials on line 2 and a secret key for Google recaptcha on line 12.
Create the required table with this:

SET SQL_MODE = “NO_AUTO_VALUE_ON_ZERO”;

CREATE TABLE pronoia ( id int(11) NOT NULL, name varchar(50) NOT NULL, ip varchar(50) NOT NULL, time date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE pronoia ADD PRIMARY KEY (id);

ALTER TABLE pronoia MODIFY id int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; COMMIT;