Пример #1
0
    die("you must be at least level " . $row["forum_view_level"] . " to be allowed here :)");
}
?>


<div>
	<?php 
echo "<a href='viewForum.php?forum_id=" . $row["thread_forum"] . "'>Return to forum overview</a>";
?>

	<table>
		<?php 
$posts = database_getPosts($_GET["thread_id"]);
while ($row = mysqli_fetch_assoc($posts)) {
    echo "<tr><td class='avatar'>";
    echo "<a href='viewUser.php?user_id=" . $row["post_author"] . "'>" . database_getUsername($row["post_author"]) . "</a>";
    echo "<br />" . $row["post_date"];
    echo "</td><td>";
    echo "<p>" . $row["post_content"] . "</p>";
    echo "</td></tr>";
}
if (things_checkLevel($forum["forum_reply_level"])) {
    echo "<tr><td>Add your post</td><td>";
    echo '<form method="post" action="finalAddPost.php?thread_id=' . $_GET["thread_id"] . '">
			        content: <textarea name="post_content"></textarea>
			        <input type="submit" value="Post" />
			     </form>';
}
?>
	</table>
Пример #2
0
}
structure_insertHeader($row["forum_name"], true);
?>


<div>
	<p>
		<a href="index.php">Return to Index</a>
	</p>
	<?php 
echo $row["forum_description"];
echo "<p><small>you must be at least level " . $row["forum_post_level"] . " to post threads here</small></p>";
echo "<p><small>you must be at least level " . $row["forum_reply_level"] . " to reply to threads here</small></p>";
echo "<p><small>you must be at least level " . $row["forum_view_level"] . " to view threads here</small></p>";
if (things_checkLevel($row["forum_post_level"])) {
    echo "<a href='addThread.php?forum_id=" . $_GET["forum_id"] . "'>add a thread</a>";
}
echo "<h2>Threads</h2>";
$threads = database_getThreads($_GET["forum_id"]);
while ($row = mysqli_fetch_assoc($threads)) {
    echo "<a href='viewThread.php?thread_id=" . $row["thread_id"] . "'><h2>" . $row["thread_subject"] . "</h2></a>";
    echo "created by <a href='viewUser.php?user_id=" . $row["thread_author"] . "'>" . database_getUsername($row["thread_author"]) . "</a>";
    echo " on " . $row["thread_date"];
    echo "<hr />";
}
?>
</div>


<?php 
structure_insertFooter();