-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
executable file
·41 lines (35 loc) · 1.09 KB
/
single.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
<?php include 'includes/partials/header.php' ?>
<?php postComment(); ?>
<div id="colorlib-container">
<div class="container">
<div class="row">
<?php include 'includes/partials/sidebar.php' ?>
<div class="col-md-9 content">
<div class="row row-pb-lg">
<div class="col-md-12">
<div class="blog-entry">
<?php displayFullPost(); ?>
</div>
</div>
</div>
<?php include 'includes/partials/comment_form.php' ?>
<div class="row row-pb-lg">
<div class="col-md-12">
<?php
$comment_count_select = "SELECT * FROM comments WHERE comment_post_id = $post_id AND comment_status = 'approved'";
$comment_count_query = mysqli_query($con, $comment_count_select);
checkSuccess($comment_count_query);
$comment_count = mysqli_num_rows($comment_count_query);
?>
<h2 class="heading-2"><?php echo $comment_count; ?> Comments</h2>
<?php
displayPostComments();
?>
</div>
</div>
<?php include 'includes/partials/footer.php' ?>
</div>
</div>
</div>
</div>
</div>