-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponders.php
249 lines (191 loc) · 11.6 KB
/
responders.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<?php include('security.php'); ?>
<?php include('includes/header.php');?>
<?php include('includes/navbar.php');?>
<style type="text/css">
/* line 10, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_bradcam.scss */
.button{
background: #E7717D;
color: #fff;
border-radius: 50px;
margin: 0 15px;
padding: 10px 30px;
}
.bg-name{
background-color: #FFC7C9;
}
.bg-number{
background-color: #DA2A47;
}
</style>
<!-- bradcam_area_start -->
<div class="bradcam_area breadcam_bg ">
<div class="container">
<br><br><br><br>
<div class="row">
<div class="col-lg-4">
<div class="bradcam_text">
<br><br>
<h1 style="text-decoration: underline;">First Responders</h1>
<a href="#res"><button class="button">Know More</button></a>
</div>
</div>
<div class="col-lg-8">
<div class="bradcam_text">
<br><br>
<img src="img/responders/bg.jpg" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
<!-- bradcam_area_end -->
<!-- Start Sample Area -->
<section class="sample-text-area">
<div class="container box_1170">
<h3 class="sample-text" style="text-align: center;">
<br><br>
Plan, Prepare, and Respond
</h3>
</div>
</section>
<!-- End Sample Area -->
<div class="whole-wrap">
<div class="container box_1170">
<div class="jumbotron">
<div class="card col-md-12">
<div class="card-header">
Guidelines
</div>
<div class="card-body">
This guidance applies to all first responders, including law enforcement, fire services, emergency medical services, and emergency management officials, who anticipate close contact with persons with confirmed or possible COVID-19 in the course of their work.
</div>
</div>
<br><br>
<div class="card col-md-12">
<div class="card-header">
Summary of Key Changes for the EMS Guidance:
</div>
<div class="card-body">
<strong>Updated PPE recommendations for the care of patients with known or suspected COVID-19:</strong>
<ul>
<li>Facemasks are an acceptable alternative until the supply chain is restored. Respirators should be prioritized for procedures that are likely to generate respiratory aerosols, which would pose the highest exposure risk to HCP.
Eye protection, gown, and gloves continue to be recommended.</li><br>
<li> If there are shortages of gowns, they should be prioritized for aerosol-generating procedures, care activities where splashes and sprays are anticipated, and high-contact patient care activities that provide opportunities for transfer of pathogens to the hands and clothing of HCP.</li><br>
<li> When the supply chain is restored, fit-tested EMS clinicians should return to use of respirators for patients with known or suspected COVID-19.</li><br>
<li>Updated guidance about recommended EPA-registered disinfectants to include reference to a list now posted on the EPA website.</li>
</ul>
</div>
</div>
<br><br>
</div>
</div>
</div>
</div>
<!-- Start Align Area -->
<div class="whole-wrap" id="res">
<div class="container box_1170">
<div class="card col-lg-12" style="padding: 25px;">
<h4 class="title-1 m-b-25">Police Services</h4>
<div class="table-responsive table--no-card m-b-40">
<?php
$query = "SELECT * FROM police_emergency WHERE state = 'kerala'";
$query_run = mysqli_query($connection, $query);
?>
<table class="table table-borderless table-striped table-earning" >
<thead>
<tr>
<th class="bg-name">Police Station Name</th>
<th class="bg-number" >Contact No.</th>
</tr>
</thead>
<tbody id="state-wise">
<?php
if(mysqli_num_rows($query_run) > 0)
{
while($row = mysqli_fetch_assoc($query_run))
{
?>
<tr>
<td><?php echo $row['police_stn_name']; ?></td>
<td><?php echo $row['police_no']; ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
<div class="card col-lg-12" style="padding: 25px;">
<h4 class="title-1 m-b-25">Ambulance Services</h4>
<div class="table-responsive table--no-card m-b-40">
<?php
$query = "SELECT * FROM ambulance_emergency WHERE state = 'kerala'";
$query_run = mysqli_query($connection, $query);
?>
<table class="table table-borderless table-striped table-earning" >
<thead>
<tr>
<th class="bg-name">Ambulance Service Names</th>
<th class="bg-number">Contact No.</th>
</tr>
</thead>
<tbody >
<?php
if(mysqli_num_rows($query_run) > 0)
{
while($row = mysqli_fetch_assoc($query_run))
{
?>
<tr>
<td><?php echo $row['ambulance_name']; ?></td>
<td><?php echo $row['ambulance_no']; ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
<div class="card col-lg-12" style="padding: 25px;">
<h4 class="title-1 m-b-25">Fire Brigade Services</h4>
<div class="table-responsive table--no-card m-b-40">
<?php
$query = "SELECT * FROM fire_emergency WHERE state = 'kerala'";
$query_run = mysqli_query($connection, $query);
?>
<table class="table table-borderless table-striped table-earning" id="state-wise">
<thead>
<tr>
<th class="bg-name">Fire Brigade Name</th>
<th class="bg-number">Contact No.</th>
</tr>
</thead>
<tbody >
<?php
if(mysqli_num_rows($query_run) > 0)
{
while($row = mysqli_fetch_assoc($query_run))
{
?>
<tr>
<td><?php echo $row['fire_service_name']; ?></td>
<td><?php echo $row['fire_no']; ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- End Align Area -->
<!-- footer end --><br><br><br>
<?php include('includes/scripts.php');?>
<?php include('includes/footer.php');?>