-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatientOtherDetails.php
134 lines (104 loc) · 3.7 KB
/
PatientOtherDetails.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
<?php
include('config.php');
if (!array_key_exists("searchalertmsg",$_SESSION)) {
$_SESSION['searchalertmsg'] = '';
}
$currentdate = date("Y/m/d");
$resId = $_GET['resid'];
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Patient Profile</title>
<style type="text/css">
</style>
</head>
<body>
<!--main navigation bar !-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="collapse navbar-collapse" id="navbarColor02">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="Home.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="logout.php">Log Out</a>
</li>
</ul>
</div>
</nav>
<!--Patient navigation bar !-->
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="PatientProfile.php">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="PatientReservationDetails.php">Reservation Details</a>
</li>
<li class="nav-item">
<a class="nav-link " data-toggle="tab" href="AboutDoctors.php">About Doctors</a>
</li>
<li class="nav-item">
<a class="nav-link " data-toggle="tab" href="SearchForDoctors.php">Search for Doctor</a>
</li>
<li class="nav-item">
<a class="nav-link" href="MakeReservation.php">Make a Reservation</a>
</li>
</ul>
<?php
echo "<br>";
echo '<b>'.'Username : '.'</b>' . $_SESSION['username'];
echo "<br>";
?>
<?php echo "<br>";?>
<?php
$query = "SELECT * FROM visitingdata WHERE ReservationID = '$resId'";
$result = $mysqli->query($query);
$resultSet = mysqli_fetch_assoc($result);
$presId = $resultSet['prescriptionid'];
?>
<div class="card mb-3" style="max-width: 40rem; margin: auto; top : 20px;" >
<h3 class="card-header"><center>Patient Visiting Details</center> </h3>
<ul class="list-group list-group-flush">
<li class="list-group-item">Doctor Note : <?php echo $resultSet['doctornote'] ?> </li>
<li class="list-group-item">Next Visiting : <?php echo date("Y-m-d",$resultSet['nextvisiting']) ?> </li>
<li class="list-group-item">Prescription ID : <?php echo $resultSet['prescriptionid']?> </li>
</ul>
</div>
<?php
$query1 = "SELECT * FROM prescriptiondata WHERE Prescriptionid = '$presId'";
$result1 = $mysqli->query($query1);
if($result1 and mysqli_num_rows($result1)>0){
$table = '<table align = center>';
$table .= '<tr> <th>Medicine</th> <th>Quantiy</th> <th>Frequency</th> <th>Cons. Period</th><th>Note</th></tr>';
while($resultSet1 = mysqli_fetch_assoc($result1)){
$table .= '<tr>';
$table .= '<td>'. $resultSet1['Medicines'] .'</td>';
$table .= '<td>'. $resultSet1['Quantity'] .'</td>';
$table .= '<td>'. $resultSet1['Frequency'] .'</td>';
$table .= '<td>'. $resultSet1['Consumption_period'] .'</td>';
$table .= '<td>'. $resultSet1['Note'] .'</td>';
$table .= '</tr>';
}
$table .= '<table>';
?>
<style type="text/css">
table{border-collapse: collapse; align-content: center;align-self: center;}
th {
background-color: lightblue;
color: white;
}
td, th {border : 1px solid black; padding: 10px;}
</style>
<?php echo "<br>"; echo "<br>"; echo $table;
/*}else{ ?>
<div class="jumbotron" align="center">
<h1 class="display-3">Yoy Have NO Reservations yet</h1>
</div>
<?php */
}
?>
</body>
</html>