A simple web forum where users can post texts. It also includes two functionalities for administrators
Admins can pin posts to highlight important discussions.
Admins can remove posts to maintain the quality of the forum.
If it does not exist or is not created automatically, you will have to create the posts
table. Run this command in your database:
CREATE TABLE posts (
id INT PRIMARY KEY AUTO_INCREMENT,
title VARCHAR(255) NOT NULL,
content TEXT NOT NULL,
date DATETIME DEFAULT CURRENT_TIMESTAMP,
pinned TINYINT(1) DEFAULT 0
);
Change Database information on /forum/php/config.php
To access as administrator you will have to put your credentials in /admin/admin.json You can also change the name of the Forum on /forum/index.html