-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactMessages.php
133 lines (129 loc) · 5.41 KB
/
ContactMessages.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
<?php
require_once("includes/DB.php");
require_once("includes/Functions.php");
require_once("includes/Sessions.php");
if($_SESSION['UserID']==null){
$_SESSION["ErrorMessage"] = "You are not logged in!";
Redirect_to("LoginUser.php");
}
else if($_SESSION['UserID']!=1){
$_SESSION["ErrorMessage"] = "You are not allowed to access this page..";
Redirect_to("Blog.php");
}
?>
<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">
<script src="https://kit.fontawesome.com/d300452dcf.js" crossorigin="anonymous"></script>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="css/styles.css" rel="stylesheet">
<title>Messages</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a href="#" class="navbar-brand">YOURVOICE.COM</a>
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarcollapseBMS">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarcollapseBMS">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a href="LoginUser.php" class="nav-link"><i class="fa-solid fa-user text-success"></i> Login</a>
</li>
<li class="nav-item">
<a href="Posts.php" class="nav-link">Manage Posts</a>
</li>
<li class="nav-item">
<a href="RegisterUser.php" class="nav-link">Sign Up</a>
</li>
<li class="nav-item">
<a href="ContactMessages.php" class="nav-link">Messages</a>
</li>
<li class="nav-item">
<a href="ManageUsers.php" class="nav-link">Manage Users</a>
</li>
<li class="nav-item">
<a href="Blog.php" class="nav-link">Read All Blogs</a>
</li>
<li class="nav-item">
<a href="ContactUs.php" class="nav-link">Contact Us</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="LogOut.php" class="nav-link text-danger"><i class="fa-solid fa-user-xmark"></i> Log Out</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="bg-dark text-white py-3">
<div class="container">
<div class="row">
<div class="col-md-12 mb-1">
<h1><i class="fa-solid fa-envelope"></i> Messages</h1>
</div>
</div>
</div>
</header>
<section class="container py-2 mb-4" style="min-height:70% ;">
<div class="row">
<?php echo ErrorMessage(); echo SuccessMessage(); ?>
<div class="col-lg-12">
<table class="table table-striped table-hover">
<thead class="table-dark">
<tr>
<th>#</th>
<th>Name</th>
<th>Number</th>
<th>Email</th>
<th>Message</th>
<th>Action</th>
</tr>
</thead>
<?php
global $ConnectingDB;
$sql = "SELECT * FROM contactus";
$stmt = $ConnectingDB->query($sql);
$SerialNumber = 0;
while ($DataRows = $stmt->fetch()){
$Id = $DataRows['id'];
$Name = $DataRows['name'];
$Number = $DataRows["number"];
$Email = $DataRows["email"];
$Message = $DataRows["message"];
$SerialNumber++;
?>
<tbody>
<tr>
<td><?php echo $SerialNumber; ?></td>
<td><?php echo $Name; ?></td>
<td><?php echo $Number; ?></td>
<td><?php echo $Email; ?></td>
<td><?php echo $Message; ?></td>
<td><a href="DeleteMessage.php?id=<?php echo $Id; ?>"><span class="btn btn-danger btn-sm">Delete</span></a></td>
</tr>
</tbody>
<?php } ?>
</table>
</div>
</div>
</section>
<br>
<footer class="bg-dark text-white">
<div class="container">
<div class="row">
<div class="col">
<p class="lead text-center">Website By YourVoice Technologies | 2022 © ---All Rights Reserved. </p>
</div>
</div>
</div>
</footer>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>