-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_post.php
141 lines (125 loc) · 5.97 KB
/
view_post.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
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
<?php
include "includes/header.php";
?>
<body>
<!-- Navigation -->
<?php include "includes/navigation.php";
?>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Blog Entries Column -->
<div class="col-md-8">
<!-- Blog Posts -->
<?php
if(isset($_GET['p_id'])){
$p_id=$_GET['p_id'];
$postQuery="SELECT * from posts WHERE post_id=".$p_id;
$selectPostsQuery=mysqli_query($connection,$postQuery);
//as long there's posts in the database, print them on the page
while($row=mysqli_fetch_assoc($selectPostsQuery)){
$post_id=$row['post_id'];
$post_title=$row['post_title'];
$post_author=$row['post_author'];
$post_date=$row['post_date'];
$post_content=$row['post_content'];
$post_status=$row['post_status'];
$post_image=$row['post_image'];
echo "<h2><a href='#'>{$post_title}</a></h2>";
echo "<p class='lead'> by <a href='index.php'>{$post_author}</a>";
echo "<p><span class='glyphicon glyphicon-time'</span> Posted on {$post_date}</p><hr>";
echo "<img class='img-responsive' src='images/{$post_image}' alt=''><hr>";
echo "<p> {$post_content} </p>";
echo "<hr>";
}
}
?>
</div>
<!-- Blog Sidebar Widgets Column -->
<?php
include "includes/sidebar.php"
?>
</div>
<!-- /.row -->
<hr>
<!-- Blog Comments -->
<!-- Comments Form -->
<div class="row">
<div class="well col-md-8">
<h4>Leave a Comment:</h4>
<form role="form" method="post" action="">
<div class="form-group">
<label for="author">Author</label>
<input type="text" class="form-control" name="comment_author">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control" name="comment_email">
</div>
<div class="form-group">
<label for="email">Post a comment</label>
<textarea class="form-control" rows="3" name="comment_content"></textarea>
</div>
<button type="submit" class="btn btn-primary" name="publish_comment">Submit</button>
</form>
</div>
<?php
$comments_count=0;
if(isset($_POST['publish_comment'])){
$errorMessage="";
$comment_author=$_POST['comment_author'];
$comment_email=$_POST['comment_email'];
$comment_content=$_POST['comment_content'];
if($comment_author==null||$comment_email==null||$comment_content==null){
if($comment_author==null)
$errorMessage.="Author field can't be empty.<br>";
if($comment_email==null){
$errorMessage.="Email field can't be empty.<br>";
}
if($comment_content==null)
$errorMessage.="Content can't be empty.<br>";
echo $errorMessage;
}
else{
$p_comment_id=$_GET['p_id'];
$insertQuery="INSERT INTO comments(comment_post_id,comment_date,comment_author,comment_email,comment_content,comment_status)"; $insertQuery.="VALUES({$p_comment_id},now(),'{$comment_author}','{$comment_email}','{$comment_content}','unapproved')";
$insertComments=mysqli_query($connection,$insertQuery) or die("Query Failed!");
if($insertComments){
$updateCommentsCount="UPDATE posts SET post_comment_count=post_comment_count+1 WHERE post_id=$p_comment_id";
$updateCount=mysqli_query($connection,$updateCommentsCount);
}
}
}
?>
</div>
<hr>
<!-- Posted Comments -->
<!-- Comment -->
<?php
$post_id=$_GET['p_id'];
$viewComments="SELECT * FROM comments where comment_post_id=$post_id";
$comments_query=mysqli_query($connection,$viewComments);
while($row=mysqli_fetch_assoc($comments_query)){
$comment_status=$row['comment_status'];
if($comment_status=='approved'){
$comment_date=$row['comment_date'];
$comment_content=$row['comment_content'];
$comment_author=$row['comment_author'];
echo"<div class='media'>";
echo"<a class='pull-left' href='#'>";
echo"<img class='media-object' src='http://placehold.it/64x64' alt=''>";
echo"</a>";
echo"<div class='media-body'>";
echo"<h4 class='media-heading'>$comment_author ";
echo"<small>{$comment_date}</small>";
echo"</h4>";
echo $comment_content;
echo"</div>";
echo"</div>";
}
}
?>
</div>
</div>
</div>
<?php include "includes/footer.php"?>