-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathambulance-service.php
122 lines (92 loc) · 2.26 KB
/
ambulance-service.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
<head>
<title>User Dashbord | Healing Infirmary</title>
<link rel="icon" href="assets/img/mlogo.png">
</head>
<?php
session_start();
include('include/conn.php');
include_once('sql.php');
if(strlen($_SESSION['email'])==0)
{
header('location:login.php');
}
else{
$_SESSION['email'];
$eamil=$_SESSION['email'];
$result = mysqli_query($conn,"SELECT * FROM users Where email='$eamil'");
if (mysqli_num_rows($result) > 0) {
$i=0;
$row = mysqli_fetch_array($result);
}
else{
echo "No result found";
}
include_once('include/header.php');
include_once('include/user-sidebar.php');
?>
<?php
session_start();
require_once('sql.php');
if(strlen($_SESSION['email'])==0)
{
header('location:login.php');
}
else{
$_SESSION['email'];
$eamil=$_SESSION['email'];
$result = mysqli_query($conn,"SELECT * FROM ambulance");
if (mysqli_num_rows($result) > 0) {
$i=0;
$row = mysqli_fetch_array($result);
}
else{
echo "No result found";
}
?>
<main class="app-content">
<div class="app-title">
<div>
<h1><i class="fa fa-th-list"></i>Ambulance list </h1>
</div>
<ul class="app-breadcrumb breadcrumb side">
<li class="breadcrumb-item"><i class="fa fa-home fa-lg"></i></li>
<li class="breadcrumb-item">Dashbord</li>
<li class="breadcrumb-item active"><a href="#">Ambulance List</a></li>
</ul>
</div>
<div class="row">
<div class="col-md-12">
<div class="tile">
<div class="tile-body">
<div class="table-responsive">
<table class="table table-hover table-bordered" id="sampleTable">
<tr>
<td>Contact</td>
<td>Driver Name</td>
<td>License Number</td>
</tr>
<?php
require_once('include/conn.php');
foreach ($dbh->query('SELECT * FROM ambulance') as $row) {
echo "
<tr>
<td>" . $row["Contact_Number"] . "</td>
<td>" . $row["Driver_Name"] . "</td>
<td>" . $row["License_No"] . "</td>
</tr>
";
}
?>
</table>
</div>
</div>
</div>
</div>
</div>
</main>
<?php
include_once('include/footer.php');
// include_once('include/Hfooter.php');
}
}
?>