32 lines
870 B
PHP
32 lines
870 B
PHP
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<body>
|
|
<?php
|
|
include "functions.php";
|
|
$db = json_decode(file_get_contents("db.json"));
|
|
$settings = json_decode(file_get_contents("settings.json"));
|
|
$thread = $_GET["thread"];
|
|
$board = $_GET["board"];
|
|
?>
|
|
<div id="page">
|
|
<?php
|
|
include "header.php";
|
|
?>
|
|
<div id="createthread">
|
|
<span class="createThreadHeader">New Thread</span>
|
|
<form action="createthread.php" method="post">
|
|
<table>
|
|
<tr>
|
|
<td id="postTable">Headline:</td><td> <input type="text" name="name" value=""><input type="submit" value="Post"></td>
|
|
<input type="text" name="reply" value="0" style="display:none;">
|
|
<input type="text" name="board" value="<?php echo $board; ?>" style="display:none;">
|
|
|
|
</tr>
|
|
<tr>
|
|
<td id="postTable">Post:</td><td><textarea name="post"></textarea></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|