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(idint(11) NOT NULL,namevarchar(50) NOT NULL,ipvarchar(50) NOT NULL,timedate NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8;ALTER TABLE
pronoiaADD PRIMARY KEY (id);ALTER TABLE
pronoiaMODIFYidint(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; COMMIT;
Description
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
Languages
PHP
56.9%
CSS
43.1%