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
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Victor Giers f972632e90 „README.md“ ändern il y a 4 ans
images Initial commit il y a 4 ans
LICENSE Initial commit il y a 4 ans
README.md „README.md“ ändern il y a 4 ans
index.php Initial commit il y a 4 ans
style.css Initial commit il y a 4 ans
terms.png Initial commit il y a 4 ans

README.md

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;