-
Notifications
You must be signed in to change notification settings - Fork 2
/
EditPost.php
234 lines (207 loc) · 8.85 KB
/
EditPost.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?php
require_once("Includes/DB.php");
?>
<?php
require_once("Includes/Functions.php");
?>
<?php
require_once("Includes/sessions.php")
?>
<?php
confirm_login(); ?>
<?php
$searchQuery = $_GET["id"];
if (isset($_POST['Submit'])) {
$title = $_POST['PostTitle'];
$admin = $_SESSION['UserName'];
$category = $_POST["Category"];
$Image = $_FILES["Image"]["name"];
$target = "Uploads/".basename($_FILES["Image"]["name"]);
$PostText = $_POST["PostDescription"];
date_default_timezone_set("Asia/Kolkata");
$currtime = time();
$dateTime = strftime("%Y-%m-%d %H:%M:%S", $currtime);
if (empty($title)) {
$_SESSION["ErrorMessage"] = "Title can't be empty";
Redirect_to("posts.php");
} else if (strlen($title) < 5) {
$_SESSION["ErrorMessage"] = "Title should be greater then 5 characters";
Redirect_to("posts.php");
} else if (strlen($title) > 9999) {
$_SESSION["ErrorMessage"] = "Title should be less then 10000 characters";
Redirect_to("posts.php");
} else {
// udate query...
global $connectingDB;
if (!empty($_FILES["Image"]["name"])) {
$sql = "UPDATE posts SET title='$title', category='$category', image='$Image', post='$PostText'
WHERE id='$searchQuery'";
} else {
$sql = "UPDATE posts SET title='$title', category='$category', post='$PostText'
WHERE id='$searchQuery'";
}
move_uploaded_file($_FILES["Image"]["tmp_name"], $target);
$execute = $connectingDB->query($sql);
if ($execute) {
$_SESSION["SuccessMessage"] = "Post with id: ".$connectingDB->lastInsertId()." updated Successfully";
Redirect_to("posts.php");
} else {
$_SESSION["ErrorMessage"] = "Something Went Wrong!!";
Redirect_to("posts.php");
}
}
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="">
<title></title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/style.css">
<script src="https://kit.fontawesome.com/d5a041e6b5.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navbar -->
<div style="height:10px; background-color: #27aae1;"></div>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container">
<a href="#" class="navbar-brand">CMS Blog</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarcollapseCMS">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarcollapseCMS">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a href="Dashboard.php" class="nav-link">Dashboard</a>
</li>
<li class="nav-item">
<a href="posts.php" class="nav-link">Posts</a>
</li>
<li class="nav-item">
<a href="categories.php" class="nav-link">Categories</a>
</li>
<li class="nav-item">
<a href="admins.php" class="nav-link">Manage Admins</a>
</li>
<li class="nav-item">
<a href="comments.php" class="nav-link">Comments</a>
</li>
<li class="nav-item">
<a href="blog.php?page=1" class="nav-link">Live Blog</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="logout.php" class="nav-link text-danger">
<i class="fas fa-sign-out-alt"></i> Logout</a>
</li>
</ul>
</div>
</div>
</nav>
<div style="height:10px; background-color: #27aae1;"></div>
<!-- End of Navbar -->
<!-- Header -->
<header class="bg-dark text-white py-3">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1><i class="fas fa-edit" style="color: #27aae1"></i>Edit Post</h1>
</div>
</div>
</div>
</header>
<!--End of Header-->
<!--Main Area-->
<section class="container py-2 mb-4">
<div class="row justify-content-center">
<div class="offset-lg-1 col-lg-10 align-items-center" style="min-height: 360px;">
<?php echo ErrorMessage();
echo SuccessMessage();
global $connectingDB;
$sql = "SELECT * FROM posts WHERE id='$searchQuery'";
$stmt = $connectingDB->query($sql);
while ($data = $stmt->fetch()) {
$titleUpdate = $data["title"];
$categoryUpdate = $data["category"];
$imageUpdate = $data["image"];
$postUpdate = $data["post"];
}
?>
<form class="" action="EditPost.php?id=<?php echo $searchQuery ?>" method="post" enctype="multipart/form-data">
<div class="card bg-secondary text-light mb-3">
<div class="card-body bg-dark">
<div class="form-group">
<label for="title"><span class="fieldInfo">Category Title: </span></label>
<input class="form-control" type="text" id="title" name="PostTitle" placeholder="Type Title Here" value="<?php echo htmlentities($titleUpdate); ?>">
</div>
<div class="form-group">
<span class="fieldInfo">Existing Categories: </span>
<?php echo htmlentities($categoryUpdate); ?>
<br>
<label for="title"><span class="fieldInfo">Choose Category </span></label>
<select class="form-control" id="categoryTitle" name="Category">
<?php
global $connectingDB;
$sql = "SELECT id, title FROM category";
$stmt = $connectingDB->query($sql);
while ($DateRows = $stmt->fetch()) {
$Id = $DateRows["id"];
$CategoryName = $DateRows["title"];
echo '<option>' .$CategoryName. '</option>';
}
?>
</select>
</div>
<div class="form-group mb-1">
<span class="fieldInfo">Existing Image: </span>
<img class="mb-1" src="Uploads/<?php echo $imageUpdate ?>" alt="" height="70px" width="170px">
<div class="custom-file">
<input class="custom-file-input" type="file" name="Image" id="imageSelect" value="">
<label for="imageSelect" class="custom-file-label"></label>
</div>
</div>
<div class="form-group">
<label for="Post"><span class="fieldInfo"> Post: </span></label>
<textarea name="PostDescription" rows="8" cols="80" class="form-control" id="PostDescription">
<?php echo htmlentities($postUpdate) ?>
</textarea>
</div>
<div class="row">
<div class="col-lg-6 mb-2">
<a href="dashboard.php" class="btn btn-warning btn-block"><i class="fas fa-arrow-left"></i> Back To Dashboard</a>
</div>
<div class="col-lg-6 mb-2">
<button type="submit" name="Submit" class="btn btn-success btn-block">
<i class="fas fa-check"> Publish</i>
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<div class="bg-dark text-white">
<div class="container">
<div class="row">
<div class="col">
<p class="lead text-center small">The Content-Management-Blog By Shreeansh Gupta and Sangam Prasad in <span id="year"></span></p>
</div>
</div>
</div>
</div>
<div style="height:10px; background-color: #27aae1;"></div>
<!-- EndFooter -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<<script type="text/javascript">
$('#year').text(new Date().getFullYear());
</script>
</body>
</html>