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
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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;