blob: c10b65b88124d7d9564bbdfde9f4e00dbc458d44 (
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
|
<?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);
}
|