-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmessearch.php
52 lines (49 loc) · 1.36 KB
/
messearch.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
<!DOCTYPE html>
<?php #include("func.php");?>
<html>
<head>
<title>User Messages</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
include("newfunction.php");
if(isset($_POST['mes_search_submit']))
{
$contact=$_POST['mes_contact'];
$query = "select * from contact where contact= '$contact'";
$result = mysqli_query($con,$query);
$row=mysqli_fetch_array($result);
if($row['name']=="" & $row['email']=="" & $row['contact']=="" & $row['message']==""){
echo "<script> alert('No queries found.');
window.location.href = 'admin-panel.php#list-doc';</script>";
}
else {
echo "<div class='home-content' id='list-mes'>
<div>
<table class='qtable'>
<thead>
<tr>
<th scope='col'>User Name</th>
<th scope='col'>Email</th>
<th scope='col'>Contact</th>
<th scope='col'>Message</th>
</tr>
</thead>
<tbody>";
$name = $row['name'];
$email = $row['email'];
$contact = $row['contact'];
$message = $row['message'];
echo "<tr>
<td>$name</td>
<td>$email</td>
<td>$contact</td>
<td>$message</td>
</tr>";
echo "</tbody></table><center><a href='admin-panel1.php' class='btn btn-light'>Back to your Dashboard</a></div></center></div></div></div>";
}
}
?>
</body>
</html>