-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapointment-list.php
192 lines (109 loc) · 3.41 KB
/
apointment-list.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
<head>
<title>Doctor Dashboard | Healing Infirmary</title>
<link rel="icon" href="assets/img/mlogo.png">
</head>
<?php
session_start();
require_once('sql.php');
$_SESSION['email'];
$eamil=$_SESSION['email'];
$result = mysqli_query($conn,"SELECT * FROM doctor_reg 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/Doctor-sidebar.php');
?>
//========================================================================================================
<?php
session_start();
include('include/conn.php');
require_once('sql.php');
if(strlen($_SESSION['email'])==0)
{
header('location:login.php');
}
else{
$dmail=$_SESSION['email'];
$date=date("Y/m/d");
$sql = "SELECT * FROM appointment_req WHERE dmail='$dmail' AND date='$date'";
$message="";
if(isset($dbh)){
//connection check
$stmt = $dbh->prepare($sql);
$stmt->execute();
$row = $stmt->fetchAll(PDO::FETCH_ASSOC);
$result1 = mysqli_query($conn,$sql);
if (mysqli_num_rows($result1) > 0) {
?>
<main class="app-content">
<div class="app-title">
<div>
<h1><i class="fa fa-th-list"></i>Appointment 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="#">Appointment 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">
<thead>
<tr>
<th> DATE</th>
<th> USER EMAIL</th>
<th> Masage</th>
<th align="center">Approve</th>
</tr>
</thead>
<tbody>
<?php
$i=0;
while($row = mysqli_fetch_assoc($result1)) {
?>
<tr>
<td><?php echo $row['date']; ?></td>
<td><?php echo $row['umail']; ?></td>
<td><?php echo $row['text']; ?></td>
<?php
$vmail=$row['umail'];
?>
<td>
<a href="approve_apointment.php ?id= <?php echo $row["umail"]; ?>" class="btn btn-success">Click Me</a>
<button type="submit" name="delete" class="btn btn-danger">Decline</button>
</td>
</tr>
<?php
$i++;
}
?>
</tbody>
</table>
<?php
}
else{
echo "<center></br></br><h1> Sorry </br>There Is No Appointment Request Today.</h1></center>
";
}
?>
</div>
</div>
</div>
</div>
</div>
</main>
<?php
include_once('include/footer.php');
include_once('include/Hfooter.php');
}
}
?>