-
Notifications
You must be signed in to change notification settings - Fork 2
/
posts.php
203 lines (191 loc) · 7.3 KB
/
posts.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
<?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(); ?>
<!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 mb-2">
<h1><i class="fas fa-blog" style="color: #27aae1"></i>Blog Posts</h1>
</div>
<div class="col-lg-3 mb-2">
<a href="addnewposts.php" class="btn btn-primary btn-block">
<i class="fas fa-edit"></i> Add New Post
</a>
</div>
<div class="col-lg-3 mb-2">
<a href="categories.php" class="btn btn-info btn-block">
<i class="fas fa-folder-plus"></i> Add New Categories
</a>
</div>
<div class="col-lg-3 mb-2">
<a href="admins.php" class="btn btn-warning btn-block">
<i class="fas fa-user-plus"></i> Add New Admin
</a>
</div>
<div class="col-lg-3 mb-2">
<a href="comments.php" class="btn btn-success btn-block">
<i class="fas fa-check"></i> Approve Comments
</a>
</div>
</div>
</div>
</header>
<!--End of Header-->
<!-- Main Area -->
<section class="container py-2 mb-4">
<div class="row">
<div class="col-lg-12">
<?php
echo ErrorMessage();
echo SuccessMessage();
?>
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th>#</th>
<th>Title</th>
<th>Category</th>
<th>Date&Time</th>
<th>Author</th>
<th>Banner</th>
<th>Action</th>
<th>Live Preview</th>
</tr>
</thead>
<?php
global $connectionDB;
$sql = "SELECT * FROM posts";
$stmt = $connectingDB->query($sql);
$sr = 0;
while ($dataRows = $stmt->fetch()) {
$id = $dataRows["id"];
$dateTime = $dataRows["datetime"];
$postTitle = $dataRows["title"];
$category = $dataRows["category"];
$admin = $dataRows["author"];
$image = $dataRows["image"];
$postText = $dataRows["post"];
$sr++;
?>
<tbody>
<tr>
<td><?php echo $sr; ?></td>
<td>
<?php if (strlen($postTitle) > 20) {
$postTitle = substr($postTitle, 0, 15)."...";
}
echo $postTitle;
?>
</td>
<td><?php echo $category; ?></td>
<td>
<?php if (strlen($dateTime) > 5) {
$dateTime = substr($dateTime, 0, 5)."...";
}
echo $dateTime;
?></td>
<td>
<?php if (strlen($admin) > 7) {
$admin = substr($admin, 0, 7)."...";
}
echo $admin;
?></td>
<td>
<img src="Uploads/<?php echo $image; ?>" alt="image" height="50px" width="170px">
</td>
<td>
<a href="EditPost.php?id=<?php echo $id; ?>" class="btn btn-warning">Edit</a>
<a href="DeletePost.php?id=<?php echo $id; ?>" class="btn btn-danger">Delete</a>
</td>
<td>
<a href="FullPost.php?id=<?php echo $id; ?>" class="btn btn-primary" target="_blank">Live Preview</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</section>
<!-- End of main -->
<!-- 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>