-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchHhospital_byname.php
109 lines (84 loc) · 3.6 KB
/
searchHhospital_byname.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
<!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--w790">
<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">Enter Hospital Name</label>
<input class="input--style-4" type="text" name="Hospital_name">
</div>
</div>
</div>
<div class="p-t-15">
<input type="submit" name="search" value="search by name">
</div>
</form>
<table>
<tr>
<th>Hospital_ID </th><br>
<th>Hospital_name</th>
<th>City</th>
<th>State</th>
</tr><br>
<?php
$connection = mysqli_connect("localhost","root","");
$db = mysqli_select_db($connection,'organ_donation');
if(isset($_POST['search']))
{
$Hospital_name=$_POST['Hospital_name'];
$query = "SELECT *from hospital where Hospital_name='$Hospital_name'";
$query_run = mysqli_query($connection,$query);
while($row=mysqli_fetch_array($query_run)){
?>
<tr>
<td> <?php echo $row['Hospital_ID'];?></td>
<td> <?php echo $row['Hospital_name'];?></td>
<td> <?php echo $row['City'];?></td>
<td> <?php echo $row['State'];?></td>
</tr>
<?php
}
}
?>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- end document-->