-
Notifications
You must be signed in to change notification settings - Fork 2
/
doctorsearch.php
56 lines (53 loc) · 1.47 KB
/
doctorsearch.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
<!DOCTYPE html>
<?php #include("func.php");?>
<html>
<head>
<title>Doctor Details</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
include("newfunction.php");
if(isset($_POST['doctor_search_submit']))
{
$contact=$_POST['doctor_contact'];
$query = "select * from doctor where email= '$contact'";
$result = mysqli_query($con,$query);
$row=mysqli_fetch_array($result);
if($row['username']=="" & $row['password']=="" & $row['email']=="" & $row['docFees']==""){
echo "<script> alert('Doctor Not Found!');
window.location.href = 'admin-panel1.php#list-doc';</script>";
}
else {
echo "<div>
<div class ='home-content' id='list-doc'>
<div>
<table class='doctor-table'>
<thead>
<tr>
<th scope='col'>Username</th>
<th scope='col'>Password</th>
<th scope='col'>Email</th>
<th scope='col'>Consultancy Fees</th>
</tr>
</thead>
<tbody>";
// while ($row=mysqli_fetch_array($result)){
$username = $row['username'];
$password = $row['password'];
$email = $row['email'];
$docFees = $row['docFees'];
echo "<tr>
<td>$username</td>
<td>$password</td>
<td>$email</td>
<td>$docFees</td>
</tr>";
// }
echo "</tbody></table><center><a href='admin-panel.php' class='btn btn-light'>Back to dashboard</a></div></center></div></div></div>";
}
}
?>
</body>
</html>