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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 vuotta sitten
12345678910111213141516171819
  1. # Pronoia
  2. Insert MySQL credentials on line 2 and a secret key for Google recaptcha on line 12.
  3. Create the required table with this:
  4. > SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  5. >
  6. > CREATE TABLE `pronoia` (
  7. > `id` int(11) NOT NULL,
  8. > `name` varchar(50) NOT NULL,
  9. > `ip` varchar(50) NOT NULL,
  10. > `time` date NOT NULL
  11. > ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  12. >
  13. > ALTER TABLE `pronoia`
  14. > ADD PRIMARY KEY (`id`);
  15. >
  16. > ALTER TABLE `pronoia`
  17. > MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
  18. > COMMIT;