summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorCflip <36554078+cflip@users.noreply.github.com>2021-01-24 14:14:05 -0700
committerCflip <36554078+cflip@users.noreply.github.com>2021-01-24 14:14:05 -0700
commit147eadd2c2bb6c8c2c9e238a82296c8a840c4aa8 (patch)
treed9588a6e141384d8329ea0951badbb8edb31bb0e /includes
parent6500ec0543a316f9fa5f16a5c47e7103ec9bbe9e (diff)
Create function to display threads
Diffstat (limited to 'includes')
-rw-r--r--includes/functions_inc.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/includes/functions_inc.php b/includes/functions_inc.php
new file mode 100644
index 0000000..c10b65b
--- /dev/null
+++ b/includes/functions_inc.php
@@ -0,0 +1,30 @@
+<?php
+
+function display_threads($dbc, $sql_result, $show_category = false) {
+ $sql = "SELECT post_id, post_date, user_id, user_name FROM posts JOIN users ON post_author = user_id WHERE post_thread = ? ORDER BY post_id DESC LIMIT 1";
+ $stmt = mysqli_stmt_init($dbc);
+
+ if (!mysqli_stmt_prepare($stmt, $sql)) {
+ die('Could not create thread due to internal error: ' . mysqli_error($dbc));
+ }
+
+ while ($row = mysqli_fetch_assoc($sql_result)) {
+ mysqli_stmt_bind_param($stmt, "i", $row['thread_id']);
+ mysqli_stmt_execute($stmt);
+
+ $thread_res = mysqli_stmt_get_result($stmt);
+ $thread = mysqli_fetch_assoc($thread_res);
+
+ echo '<tr><td class="left">';
+ echo '<h4><a href="thread.php?id=' . $row['thread_id'] . '">' . $row['thread_subject'] . '</a></h4>';
+ echo '<small>by <b><a href="user.php?id=' . $row['user_id'] . '">' . $row['user_name'] . '</a></b> ';
+ if ($show_category) {
+ echo 'in <b><a href="category.php?id=' . $row['cat_id'] . '">' . $row['cat_name'] . '</a></b> ';
+ }
+ echo 'on ' . date('M d, Y', strtotime($row['thread_date'])) . '</small>';
+ echo '</td><td class="right">by <b><a href="user.php?id=' . $thread['user_id'] . '">' . $thread['user_name'] . '</a></b><br>';
+ echo '<small>' . date('m/d/Y g:ia', strtotime($thread['post_date'])) . '</small></td></tr>';
+ }
+
+ mysqli_stmt_close($stmt);
+} \ No newline at end of file