-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathsidebar.php
45 lines (27 loc) · 894 Bytes
/
sidebar.php
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
<!-- sidebar section -->
<div class="col-4">
<?php
if(isset($_GET['id'])){
?>
<div class="card mb-3">
<h5 class="card-header">Comments</h5>
<div class="card-body">
<?php
$commentsel = "SELECT * FROM comments WHERE post_id = $post_id ORDER BY id DESC";
$commentque = mysqli_query($conn, $commentsel);
while($comments = mysqli_fetch_assoc($commentque)){
?>
<h5 class="card-title"><?= $comments ['name'] ?> - <small> <?= date('F jS, Y',strtotime($comments['commented_at']))?></small></h5>
<p class="card-text"><?= $comments ['comment'] ?>.</p>
<!-- <a href="#" class="btn btn-primary sb-btn">Go somewhere</a> -->
<?php
}
?>
<?php
}
?>
</div>
</div>
</div>
</div>
<!-- sidebar section over -->