„threadr/board/index.php“ ändern

master
Jakob 2020-03-08 03:41:05 +01:00
parent 2605f766b0
commit f2faa760c4
1 changed files with 13 additions and 0 deletions

View File

@ -40,6 +40,19 @@ $id=$_GET['id'];
include("./board.php");
?>
</div>
<div class="item-3">
<?php
if(isset($_GET['action'])) {
if($_GET['action']=='post') {
include("./post.php");
} elseif($_GET['action']=='edit') {
include("./edit.php");
}
} else {
include("./default.php");
}
?>
</div>
</div>
</body>
</html>