-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy paththread.php
More file actions
executable file
·191 lines (163 loc) · 6.62 KB
/
thread.php
File metadata and controls
executable file
·191 lines (163 loc) · 6.62 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<!-- SMIPO Thread Selection
@author James
-->
<?php
require("connect.php");
$board_id = $_GET['board'];
$thread_id = $_GET['thread'];
$sql = 'SELECT * FROM Topics WHERE topic_id = ' . $thread_id;
$result = $db->query($sql);
$row = $result->fetchRow();
$topic_sub = $row['topic_subject'];
$page = $_GET['page'];
?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Forums - SMIPO</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/smipo.css" rel="stylesheet">
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php require_once("navigation.php"); ?>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center">
<?php echo "<p>You are viewing the " . $row['topic_subject'] . " thread.</p><br />";?>
</h2>
<hr>
</div>
<div class="row">
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<form method="POST" action="forum-search.php">
<input type="text" class="form-control" id="search-field" placeholder="Search the forums..." name="query" style="float:left">
<input type="submit" class="btn-primary" value="Submit" style="float:left">
</form>
</div>
</div>
<br>
<div class="row">
<!-- main content area -->
<div id="replies" >
<?php
function deleteReplyButton($reply_by, $user_id, $replyID) {
/*Status must be compared to string becuase it is stored in SESSION as string*/
if (($_SESSION['user_id'] === $reply_by) || ($_SESSION['status'] === "2")) {
return "<form action='delete-reply.php?reply_by=$reply_by&reply_id=$replyID' method='post'> <button type='submit' class='btn btn-primary' value='submit'> Delete Reply</button> </form>";
}
else {
return "";
}
}
/* Get threads */
$sql2 = 'SELECT * FROM Replies WHERE thread_id = ' . $thread_id . ' ORDER BY reply_id ASC LIMIT 10 OFFSET ' . $page * 10;
$result2 = $db->query($sql2);
/* set up table headers */
echo "<table class='table forum table-striped'>";
echo "<thead><tr>";
echo "<th class='cell-stat-2x hidden-xs hidden-sm'> Content </strong> </th>";
echo "<th></th>";
echo "<th class='cell-stat text-center hidden-xs hidden-sm'> Date </strong> </th>";
echo "<th class='cell-stat text-center hidden-xs hidden-sm'> Poster </strong> </th>";
echo "</tr></thead><tbody>";
/* end table headers */
/* pull replies from database and display */
while($replies = $result2->fetchRow()) {
echo "<tr>";
echo "<td class='hidden-xs'>" . $replies['reply_content'] . "</td>";
echo "<td class=''>" . deleteReplyButton($replies['reply_by'], $user_id, $replies['reply_id'], $status) . "</td>";
echo "<td class='text-center hidden-xs hidden-sm'>" . $replies['reply_date'] . "</td>";
echo "<td class='text-center'>" . "<img src='img/" . displayMemberPicture($replies['reply_by']) . "' height='100' width='100'>" .
"<br>" . displayMember($replies['reply_by']) . "</td>";
echo "</tr>";
}
echo "</tbody></table>";
/* Split results into pages */
$page_count_sql = 'SELECT COUNT(reply_id) as total FROM Replies WHERE thread_id = ' . $thread_id;
$page_count = $db->query($page_count_sql);
$page_result = $page_count->fetchRow();
$total = $page_result['total'];
/* round up */
$total = ceil($total / 10);
/* for loop to create page links */
echo "<div class='col-sm-4'></div>";
echo "<div class='col-sm-4'>";
for ($x = 0; $x < $total; $x ++) {
echo "<a href=thread.php?board=$board_id&thread=$thread_id&page=$x>$x|</a>";
}
echo "</div>";
echo "<div class='col-sm-4'></div>";
/* end split results */
function displayMember($member_id) {
require("connect.php");
$member_sql = 'SELECT * FROM members WHERE member_id = ' . $member_id;
$member_result = $db->query($member_sql);
$member = $member_result->fetchRow();
return $member['username'];
}
function displayMemberPicture($member_id) {
require("connect.php");
$pic_sql = "SELECT * FROM members WHERE member_id = $member_id";
$pic_result = $db->query($pic_sql);
$pic = $pic_result->fetchRow();
$picture = $pic['img_source'];
if ($picture == null) {
return "smipo-logo.jpg";
}
else {
return $picture;
}
}
echo "<br><br>";
echo "<center>";
echo "<form action='newPost.php?thread=$thread_id&req=new&topic=$topic_sub' method='POST'>";
echo "<input type='submit' value='Reply'>";
echo "</form>";
echo "</center>";
?>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- /.container -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p>Copyright © Radford SMIPO 2016</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>