-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpatientsearch.php
56 lines (52 loc) · 1.41 KB
/
patientsearch.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>Patient Details</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
include("newfunction.php");
if(isset($_POST['patient_search_submit']))
{
$contact=$_POST['patient_contact'];
$query = "select * from patient where contact= '$contact'";
$result = mysqli_query($con,$query);
$row=mysqli_fetch_array($result);
if($row['lname']=="" & $row['email']=="" & $row['contact']=="" & $row['password']==""){
echo "<script> alert('Patient not found');
window.location.href = 'admin-panel1.php#list-doc';</script>";
}
else {
echo "<div class='home-content' id='list-pat'>
<div>
<table class='patient'>
<thead>
<tr>
<th scope='col'>First Name</th>
<th scope='col'>Last Name</th>
<th scope='col'>Email</th>
<th scope='col'>Contact</th>
<th scope='col'>Password</th>
</tr>
</thead>
<tbody>";
$fname = $row['fname'];
$lname = $row['lname'];
$email = $row['email'];
$contact = $row['contact'];
$password = $row['password'];
echo "<tr>
<td>$fname</td>
<td>$lname</td>
<td>$email</td>
<td>$contact</td>
<td>$password</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>