Created readme.md and added some php
This commit is contained in:
parent
4fe11c8713
commit
4bb7d406ed
10
README.md
10
README.md
@ -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
|
6
fboard/includes/header.php
Normal file
6
fboard/includes/header.php
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<h1>fBoard</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
8
fboard/index.php
Normal file
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
2
install.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
cp ./fboard /srv/www/htdocs -r
|
||||||
|
chmod 777 /srv/www/htdocs/fboard -R
|
Loading…
Reference in New Issue
Block a user