-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.php
122 lines (115 loc) · 5.19 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
<?php
include('include/header.php');
if(!isset($_SESSION['id'])){
echo "<div class='alert alert-danger'>" . "غير مسموح لك فتح هذه الصفحة" . "</div";
header('REFRESH:2;URL=login.php');
}
else{
include('classes/posts-contr.class.php');
$posts = new PostsContr();
?>
<!-- Start Content -->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-2" id="side-area">
<h4>لوحة التحكم</h4>
<ul>
<li>
<a href="categories.php">
<span><i class="fas fa-tags"></i></span>
<span>التصنيفات</span>
</a>
</li>
<!-- Articles -->
<li data-toggle="collapse" data-target="#menu">
<a href="#">
<span><i class="far fa-newspaper"></i></span>
<span>المقالات</span>
</a>
</li>
<ul class="collapse" id="menu">
<li>
<a href="new-post.php">
<span><i class="far fa-edit"></i></span>
<span>مقال جديد</span>
</a>
</li>
<li>
<a href="posts.php">
<span><i class="fas fa-th-large"></i></span>
<span>كل المقالات</span>
</a>
</li>
</ul>
<li>
<a href="index.php" target="_blank">
<span><i class="fas fa-window-restore"></i></span>
<span>عرض الموقع</span>
</a>
</li>
<li>
<a href="logout.php">
<span><i class="fas fa-sign-out-alt"></i></span>
<span>تسجيل الخروج</span>
</a>
</li>
</ul>
</div>
<div class="col-md-10" id="main-area">
<button class="custom-btn">كل المقالات</button>
<!-- Display all posts -->
<div class="display-data mt-4">
<?php
if(isset($_GET['id'])){
$id = $_GET['id'];
$delete = $posts->deleteSpecificPost($id);
if($delete == true){
echo "<div class='alert alert-success'>" . "تم حذف المقال بنجاح" . "</div>";
}
else{
echo "<div class='alert alert-danger'>" . "عفواً حدث خطأ ما" . "</div>";
}
}
?>
<table class="table table-ordered">
<tr>
<th>رقم المقال</th>
<th>عنوان المقال</th>
<th>كاتب المقال</th>
<th>صورة المقال</th>
<th>تاريخ المقال</th>
<th>حذف المقال</th>
<th>تعديل المقال</th>
</tr>
<?php
$result = $posts->displayPosts();
$no = 0;
while($row = $result->fetch(PDO::FETCH_ASSOC)){
$no++;
?>
<tr>
<td><?php echo $no; ?></td>
<td><?php echo $row['postTitle'] ;?></td>
<td><?php echo $row['postAuthor'] ;?></td>
<td><img src="uploads/<?php echo $row['postImage'] ;?> " width="70px" height="50px"></td>
<td><?php echo $row['postDate'] ;?></td>
<td><a href="posts.php?id=<?php echo $row['id']; ?>"><button class="custom-btn">حذف المقال</button><a></td>
<td><a href="edit-post.php?id=<?php echo $row['id']; ?>"><button class="custom-btn">تعديل المقال</button><a></td>
</tr>
<?php
}
?>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- End Content -->
<?php
include('include/footer.php');
?>
<?php
}
?>