-
Notifications
You must be signed in to change notification settings - Fork 1
/
post.php
200 lines (146 loc) · 4.84 KB
/
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
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
192
193
194
195
196
197
198
199
200
<?php
session_start();
include './partials/db.php';
if(!$_GET['id']){
header('Location:forum.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CovidPort-Posts</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- Custom style sheet -->
<link rel="stylesheet" href="css/post.css?v=<?php echo time();?>">
</head>
<body>
<?php
include './partials/header.php';
?>
<div class="big-container container">
<div class=" my-5 box-1 container">
<?php
$table="post";
if(isset($_GET['id']) && $_GET['id']>0){
$id=mysqli_real_escape_string($mysqli,$_GET['id']);
$sql= "SELECT `title`,`short-desc`,`category`,`content`,`user_id`, `author`, `date_published` FROM $table WHERE `post_id` = $id";
$result=$mysqli->query($sql);
if(mysqli_num_rows($result)){
$data=mysqli_fetch_assoc($result);
echo '<div class="d-flex "><div>
<h3 style="margin-bottom:30px;">'.stripslashes($data['title']).'</h3></div><br>';
if(isset($_SESSION['loggedin'])){
if(isset($_SESSION['user_id']) && $_SESSION['user_id']==$data['user_id']){
echo '<div><span><button type="button" class="btn btn-danger del " onclick="deletepost('.$id.');">Delete</button></span></div>';
}
}
echo '</div>
<p>'."Posted by ".$data['author']." at ".$data['date_published']." in ".'<span style="color:red;">'.$data['category'].'</span></p>
<h6><em><strong>'.stripslashes($data['short-desc']).'</em></strong></h6><br><br>
<div><div class="post-cont text-justify">'.$data['content'].'</div></div><br>
';
}
}
?>
<div>
<form method="POST" id="mainform">
<textarea class="form-control" id="comment_content" placeholder="Leave a comment"></textarea><br>
<?php if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin']!=true){
echo '<a class="btn btn-success" href="login.php" >Login to Comment</a>';
}
else{
echo '<button class="btn btn-success" type="button" onclick="addComment()" id="submit" name="submit">Post</button>';
}
?>
</form>
<div id="display-comment"></div>
</div>
</div>
</div>
<?php include './partials/footer.php';?>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
displayRecords();
})
function displayRecords(){
var post_id=<?php echo $_GET['id'];?>;
var displayrecord="displayrecord";
$.ajax({
url:"addcomment.php",
type:'post',
data:{ displayrecord:displayrecord,
post_id:post_id},
success:function(data,status){
$('#display-comment').html(data);
}
});
}
function addComment(){
var content=$('#comment_content').val();
var author= '<?php echo $_SESSION['username'];?>';
var author_id=<?php echo $_SESSION['user_id'];?>;
var post_id=<?php echo $_GET['id'];?>;
$.ajax({
url:"addcomment.php",
type:'post',
data:{content:content,
author:author,
author_id:author_id,
post_id:post_id
},
success:function(data,status){
document.getElementById("mainform").reset();
displayRecords();
if(data == 'success')
return false
},
});
}
function deleteComment(deleteid){
var con=confirm("Are you sure?");
if(con==true){
$.ajax({
url:"addcomment.php",
type:"post",
data:{deleteid:deleteid},
success:function(data,status){
displayRecords();
if(data == 'success')
return false;
}
});
}
}
function deletepost(deleteid){
var con=confirm("Are you sure?");
if(con==true){
$.ajax({
url:"addcomment.php",
type:"post",
data:{deletepost:deleteid},
success:function(data,status){
location.href = "forum.php";
if(data == 'success')
return false;
}
});
}
}
function reply(caller){
$('.replyRow').insertAfter($(caller).parent().parent().parent());
$('.replyRow').show();
}
</script>
</html>