-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcategories.php
More file actions
212 lines (195 loc) · 7.74 KB
/
categories.php
File metadata and controls
212 lines (195 loc) · 7.74 KB
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
<?php
require_once("Includes/DB.php");
?>
<?php
require_once("Includes/Functions.php");
?>
<?php
require_once("Includes/sessions.php")
?>
<?php
$_SESSION['trackingUrl'] = $_SERVER["PHP_SELF"];
confirm_login(); ?>
<?php
if (isset($_POST['Submit'])) {
$title = $_POST['CategoryTitle'];
$admin = $_SESSION['UserName'];
date_default_timezone_set("Asia/Kolkata");
$currtime = time();
$dateTime = strftime("%Y-%m-%d %H:%M:%S", $currtime);
if (empty($title)) {
$_SESSION["ErrorMessage"] = "All Fields must be filled out";
Redirect_to("categories.php");
} else if (strlen($title) < 3) {
$_SESSION["ErrorMessage"] = "Category title should be greater then 2 characters";
Redirect_to("categories.php");
} else if (strlen($title) > 50) {
$_SESSION["ErrorMessage"] = "Category title should be less then 50 characters";
Redirect_to("categories.php");
} else {
global $connectingDB;
$sql = "INSERT INTO category(title, author, created_on)";
$sql .= "VALUES(:categoryName,:adminName,:datetime)"; // dummy variable to prevent sql injection
$stmt = $connectingDB->prepare($sql);
$stmt->bindValue(':categoryName',$title);
$stmt->bindValue(':adminName',$admin);
$stmt->bindValue(':datetime',$dateTime);
$execute=$stmt->execute();
if ($execute) {
$_SESSION["SuccessMessage"] = "Category with id: ".$connectingDB->lastInsertId()." added Successfully";
Redirect_to("categories.php");
} else {
$_SESSION["ErrorMessage"] = "Something Went Wrong!!";
Redirect_to("categories.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>Manage Categories</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();
?>
<form class="" action="categories.php" method="post">
<div class="card bg-secondary text-light mb-3">
<div class="card-header">
<h1>Add New Category</h1>
</div>
<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="CategoryTitle" placeholder="Type Title Here" value="">
</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>
<h2>Existing Categories</h2>
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th>No.</th>
<th>Date&Time</th>
<th>Category Name</th>
<th>Creator</th>
<th>Delete</th>
</tr>
</thead>
<?php
global $connectingDB;
$sql = "SELECT * FROM category";
$stmt = $connectingDB->query($sql);
$sr_no = 0;
while ($dataRows = $stmt->fetch()) {
$Id = $dataRows['id'];
$dateTime = $dataRows['created_on'];
$categoryName = $dataRows['title'];
$author = $dataRows['author'];
$sr_no++;
?>
<tbody>
<tr>
<td><?php echo htmlentities($sr_no); ?></td>
<td><?php echo htmlentities($dateTime); ?></td>
<td><?php echo htmlentities($categoryName); ?></td>
<td><?php echo htmlentities($author); ?></td>
<td> <a href="deleteCategory.php?id=<?php echo $Id; ?>" class="btn btn-danger">Delete</a> </td>
</tbody>
<?php } ?>
</table>
</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>