threadr.lostcave.ddnss.de/src/board
BodgeMaster 05d60b4afc fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
..
README.md fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
board.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
default.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
edit.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
index.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
post.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00
submit.php fixed #51 to make the new variable grabbler work properly 2021-09-08 09:20:38 +02:00

README.md

A short overview of the files:

index.php

Somewhat obvious... $_GET values:

  • id → the board id
  • action → what action file should be loaded in the bottom section (see below)
    • valid actions: [not present], post, submit, edit
  • end → if present, jump to the end of the page

board.php

the top part of a board page, displays the posts, loaded via include()

post.php

one of the action files for the bottom of the page, displays a form to add a post, loaded via include()

submit.php

displays a message in the bottom of the page and submits a new post, loaded via include()

edit.php

? [Will look into it later, seems not to do very much ATM]

default.php

displays a button giving the user the option to post something

README.md

this file