summaryrefslogtreecommitdiff
path: root/index.php
blob: 7b925240cc26284a7fa6a873ade59f242bc38e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php session_start() ?>
<!DOCTYPE html>
<html lang="en">
<head>
    <title>cflip.net forum</title>
    <link rel="stylesheet" href="styles/style.css">
</head>
<body>
<?php include('includes/templates/header.php'); ?>
<h2>Welcome to the cflip.net forum!</h2>
<p>
    This is the beta test of the forum website, so there are lots of features missing. Since there are no moderation
    features built into the website,
    <i>for the most part</i> I don't care that much about what is posted here. Some links and buttons may not have any
    functionality either!
</p>
<p>
    If you notice a problem or have an idea for a feature that is missing, <a
            href="http://51.195.90.7/forum/thread.php?id=40">reply to this thread!</a>
</p>
<h2>Categories</h2>
<table>
    <tr>
        <th>Category</th>
        <th>Threads</th>
        <th>Posts</th>
        <th>Latest Thread</th>
    </tr>
	<?php
	include('includes/db_inc.php');
	include('includes/model/Category.php');

	$categories = get_all_categories($dbc);

	foreach ($categories as $category) {
		$latest_thread = $category->get_latest_thread($dbc);

		echo '<tr>';
		echo '<td>';
		echo '<b><a href="viewcategory.php?id=' . $category->id . '">' . $category->name . '</a></b>';
		echo '<br><small>' . $category->description . '</small>';
		echo '</td>';
		echo '<td>' . $category->thread_count . '</td>';
		echo '<td>' . $category->post_count . '</td>';
		if (!is_null($latest_thread)) {
			echo '<td><b><a href="viewthread.php?id=' . $latest_thread->id . '">' . $latest_thread->subject . '</a></b><br>';
			echo '<small>by <b><a href="viewuser.php?id=' . $latest_thread->author->id . '">' . $latest_thread->author->name . '</a></b>, ' . $latest_thread->date_created . '</small></td>';
		} else {
			echo '<td>No threads yet!</td>';
		}
		echo '</tr>';
	}
	?>
</table>
</body>
</html>