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
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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;