-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathadminindex.php
168 lines (116 loc) · 4.02 KB
/
adminindex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>SLOCV Unit</title>
<link rel="icon" type="image/png" href="228-2285847_emblem-of-sri-lanka-national-emblem-of-sri.png">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<body>
<?php
session_start();
include "DBconnection.php";
if(!isset($_SESSION['email']))
{
header("location:adminlogin.php");
}
else
{
$id = $_SESSION['id'];
$email = $_SESSION['email'];
$result = mysqli_query($conn,"SELECT * FROM admins WHERE id='" . $id."'");
$row = mysqli_fetch_array($result);
if($row >0)
{
$name=$row['name'];
$password =$row['password'];
}
$mysqli = new mysqli('localhost','root','','covidv') or die(mysqli_error($mysqli));
$result = $mysqli->query("SELECT * FROM patients ") or die ($mysqli->erorr);
}
?>
<div class="topnav" style=" margin-top: -20px " >
<a style="padding-top:0px; padding-bottom: 0px"><img height="60px" src="228-2285847_emblem-of-sri-lanka-national-emblem-of-sri.png"></a>
<h2 style="font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif'">SRI LANKAN ONLINE COVID VACCINATION</h2>
<a href="adminindex.php">Registerd Patients</a>
<a href="requestv1.php">Requests Vacinne 1</a>
<a href="requestv2.php">Requests Vacinne 2</a>
<a href="userLogout.php">Log out</a>
<h3 align="right" style="font-family:Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', 'serif'">User - <?php echo $name;?></h3>
</div>
<div class="section2" align="center" style="margin-bottom: 20px; overflow-y: scroll" >
<div style="margin-top: 10px">
<h1 align="center" >Registerd Patients Details</h1><hr>
<table class="table table-bordered" style=" color: black; font-size: 20px; border:10px ">
<thead>
<tr>
<th scope="col"> ID</th>
<th scope="col"> Name</th>
<th scope="col">Email</th>
<th scope="col">Password</th>
<th scope="col">Vaccine</th>
<th scope="col">City</th>
<th scope="col">NIC</th>
</tr>
</thead>
<tbody>
<?php
while ($row= $result->fetch_assoc()): ?>
<tr>
<td><?php echo $row['id']; ?></td>
<td><?php echo $row['name']; ?></td>
<td ><?php echo $row['patientEmail']; ?></td>
<td><?php echo $row['password']; ?></td>
<td ><?php echo $row['vaccinename']; ?></td>
<td ><?php echo $row['city']; ?></td>
<td ><?php echo $row['nic']; ?></td>
</tr>
</tbody>
<?php endwhile; ?>
</table>
<?php
function pre_r( $array ){
echo '<pre>';
print_r($array);
echo '</pre>';
}
?>
</div>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<a> </a>
<p class="footer-links">
<a href="index.html">Home</a>
<a href="index.html">Vaccine Details</a>
</p>
<p class="footer-company-name">SLOCV UNIT © 2021</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p>Epidemiology Unit, Ministry of Health ,<br> De Saram Place, Colombo 10</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+94-11-2681548 Fax : +94-11-2696583</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href=""> chepid@sltnet.lk , epidunit@sltnet.lk </a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>Copyright © Epidemiology Unit - 2019</span>
Last Updated on Thursday, 26 August 2021 03:12, and music festivals.26 August 2021 03:12, and music festivals.26 August 2021 03:12, and music festivals.
</p>
</div>
</footer>
<script src="js/slider.js"></script>
</body>
</html>