-
Notifications
You must be signed in to change notification settings - Fork 6
/
Vaccinedetails.php
181 lines (125 loc) · 4.25 KB
/
Vaccinedetails.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
<?php error_reporting(0); ?>
<!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:loginindex.php");
}
else
{
$id = $_SESSION['id'];
$email = $_SESSION['email'];
$result = mysqli_query($conn,"SELECT * FROM patients WHERE id='" . $id."'");
$row = mysqli_fetch_array($result);
if($row >0)
{
$name=$row['name'];
$password =$row['password'];
$city =$row['city'];
$vaccinename =$row['vaccinename'];
$email =$row['patientEmail'];
}
$result = mysqli_query($conn,"SELECT * FROM first_vaccine_requests WHERE patientID='" . $id."'");
$row = mysqli_fetch_array($result);
if($row >0)
{
$FL = $row['FvaccineLocation'];
$FD = $row['FvaccineTime'];
}
$result = mysqli_query($conn,"SELECT * FROM second_vaccine_requests WHERE patientID='" . $id."'");
$row = mysqli_fetch_array($result);
if($row >0)
{
$SL = $row['SvaccineTime'];
$SD = $row['SvaccineLocation'];
}
$mysqli = new mysqli('localhost','root','','covidV') or die(mysqli_error($mysqli));
$result2 = $mysqli->query("SELECT * FROM vaccine") 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="VaccineIndex.php">Home</a>
<a href="Vaccinedetails.php">Vaccine Details</a>
<a href="myprofile.php">My Profile</a>
<a href="about.php">About SLOC-V Unit</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="padding: 30px; overflow-y: scroll" >
<h1 align="center" >Vaccine Details</h1>
<table class="table table-hover" id="user-data" >
<thead>
<tr>
<th class="hidden" scope="span">ID</th>
<th scope="col">Name</th>
<th scope="col">Details</th>
</tr>
</thead>
<tbody>
<?php
while ($row= $result2->fetch_assoc()): ?>
<tr>
<td class="hidden"><?php echo $row['id']; ?></td>
<td><?php echo $row['vaccinename']; ?></td>
<td><?php echo $row['details']; ?></td>
</tr>
</tbody>
<?php endwhile; ?>
</table>
<?php
function pre_r( $array ){
echo '<pre>';
print_r($array);
echo '</pre>';
}
?>
</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>