Created readme.md and added some php

This commit is contained in:
filip 2021-01-21 18:49:24 +01:00
parent 4fe11c8713
commit 4bb7d406ed
4 changed files with 26 additions and 0 deletions

@ -0,0 +1,10 @@
fBoard
A forum/image board software written in php by Filip Nilsen
Planned features:
File and image upload
Embedded video images and possibly code and styling (html, css, js and php)
Replies work like they do on reddit
Registration optional
No database needed
Registerd users can create their own boards

@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<body>
<h1>fBoard</h1>
</body>
</html>

8
fboard/index.php Normal file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<?php
include "includes/header.php";
?>
</body>
</html>

2
install.sh Executable file

@ -0,0 +1,2 @@
cp ./fboard /srv/www/htdocs -r
chmod 777 /srv/www/htdocs/fboard -R