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文字以内のものにしてください。
Victor Giers 6af7f10a25 remove terms.png 4年前
images Initial commit 4年前
LICENSE Initial commit 4年前
README.md „README.md“ ändern 4年前
index.php Initial commit 4年前
style.css Initial commit 4年前

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;