-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchdoctor_byid.php
113 lines (86 loc) · 3.78 KB
/
searchdoctor_byid.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Organ Donation</title>
<!-- Icons font CSS-->
<link href="vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="vendor/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" media="all">
<!-- Font special for pages-->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<!-- Vendor CSS-->
<link href="vendor/select/select2.min.css" rel="stylesheet" media="all">
<link href="vendor/datepicker/daterangepicker.css" rel="stylesheet" media="all">
<!-- Main CSS-->
<link href="css/main.css" rel="stylesheet" media="all">
<style>
table, th, td {
border: 1px solid black;
padding: 5px;
}
table {
border-spacing: 15px;
}
</style>
</head>
<body>
<form action="Hhome.php">
<input type="submit" value="Go back!" >
</form>
<div class="page-wrapper bg-gra-02 p-t-130 p-b-100 font-poppins">
<div class="wrapper wrapper--w780">
<div class="card card-4">
<div class="card-body">
<h2 class="title">Search Data</h2>
<form method="POST" action="">
<div class="row row-space">
<div class="col-2">
<div class="input-group">
<label class="label">Doctor_ID</label>
<input class="input--style-4" type="text" name="Doctor_ID">
</div>
</div>
</div>
<div class="p-t-15">
<input type="submit" name="search" value="search by id">
</div>
</form>
<table>
<tr>
<th>Doctor_ID</th><br>
<th>first_name</th>
<th>last_name</th>
<th>hospital_id</th>
<th>phone_number</th>
</tr><br>
<?php
$connection = mysqli_connect("localhost","root","");
$db = mysqli_select_db($connection,'organ_donation');
if(isset($_POST['search']))
{
$Doctor_ID = $_POST['Doctor_ID'];
$query = "SELECT *from doctor where Doctor_ID='$Doctor_ID'";
$query_run = mysqli_query($connection,$query);
while($row=mysqli_fetch_assoc($query_run)){
?>
<tr>
<td> <?php echo $row['Doctor_ID'];?></td>
<td> <?php echo $row['first_name'];?></td>
<td> <?php echo $row['last_name'];?></td>
<td> <?php echo $row['hospital_id'];?></td>
<td> <?php echo $row['phone_number'];?></td>
</tr>
<?php
}
}
?>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- end document-->