summaryrefslogtreecommitdiff
path: root/thread.php
diff options
context:
space:
mode:
Diffstat (limited to 'thread.php')
-rw-r--r--thread.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/thread.php b/thread.php
index 52ad8b3..ce39d2f 100644
--- a/thread.php
+++ b/thread.php
@@ -15,7 +15,7 @@ if (mysqli_num_rows($result) == 0) {
} else {
while ($row = mysqli_fetch_assoc($result)) {
echo '<section><h1>' . $row['thread_subject'] . '</h1>';
- echo 'Created by <b>' . $row['user_name'] . '</b> on ' . date('M d, Y', strtotime($row['thread_date'])) . '</section>';
+ echo 'Created by <a href="user.php?id='. $row['user_id'] .'">' . $row['user_name'] . '</a> on ' . date('M d, Y', strtotime($row['thread_date'])) . '</section>';
$thread_id = $row['thread_id'];
}
}
@@ -36,7 +36,7 @@ if (mysqli_num_rows($result) == 0) {
} else {
echo '<table>';
while ($row = mysqli_fetch_assoc($result)) {
- echo '<tr class="post"><td class="right">Posted by <b>' . $row['user_name'] . '</b><br><small>' . date('m/d/Y g:ia', strtotime($row['post_date'])) . '</small></td>';
+ echo '<tr class="post"><td class="right">Posted by <a href="user.php?id='. $row['user_id'] .'">' . $row['user_name'] . '</a><br><small>' . date('m/d/Y g:ia', strtotime($row['post_date'])) . '</small></td>';
echo '<td class="left">' . $row['post_content'] . '</td></tr>';
}
echo '</table>';
@@ -64,4 +64,4 @@ if (isset($_SESSION['signed_in'])) {
}
include_once 'footer.php';
-?> \ No newline at end of file
+?>