forked from TharunKumarReddyPolu/Librarian-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
student-mybooks.php
238 lines (215 loc) · 4.92 KB
/
student-mybooks.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin']!=true){
header("location: index.php");
exit;
}
require 'student-nav.php' ;
?>
<style >
.active{
background-color: var(--bg-color);
}
.active2{
background-color: var(--first-color);
}
.active1{
background-color: var(--bg-color);
}
.active3{
background-color: var(--bg-color);
}
.active4{
background-color: var(--bg-color);
}
</style>
<?php
$showAlert = false;
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "librarianbot";
$k=1;
$K=0;
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$RollNumber=$_SESSION['username'];
$sql = "SELECT * FROM books where Custody='$RollNumber'";
$result = $conn->query($sql);
?>
<style>
* {
font-family: sans-serif; /* Change your font family */
}
.content-table {
border-collapse: collapse;
margin: 250px 10%;
font-size: 1em;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
width:85%;
}
.content-table thead tr {
background-color: #12192C;
color: #ffffff;
text-align: left;
font-weight: bold;
padding:40px 10px;
}
.content-table tbody tr:hover {
background-color: #f3f3f3;
color: #000000;
text-align: left;
padding:40px 10px;
}
.content-table thead tr th{
padding:15px 15px 10px 10px;
}
.one{
width:100px;
}
.two{
width:80px;
}
.content-table th,
.content-table td {
padding: 10px 10px;
}
.content-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.content-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
border-bottom: 2px solid #12192C;
}
.content-table tbody tr.active-row {
font-weight: bold;
color: #12192C;
}
.button {
border-radius: 7px;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 15px;
padding: 10px 10px;
width: 50px;
transition: all 0.5s;
cursor: pointer;
margin-right: 0px;
margin-left:0px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.button1 {
background-color: #0C5DF4;
}
.button2 {
background-color: #FF1212;
}
.button3 {
background-color: #ffd500;
}
.due{
background-color:#ff0000;
}
.nodue{
background-color:#00ff00;
color:#000000;
}
</style>
<html>
<?php
if($showAlert){ ?>
<div class="alert green">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
Details are Updated!
</div>
<?php ;
}
?>
<table class="content-table">
<thead>
<tr>
<th>Book Id</th>
<th>Book Name</th>
<th>Custody</th>
<th>Date Of Lent</th>
<th>Days</th>
<th>Date of submission</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php
while($row = $result->fetch_assoc()) {
$fine_per_day = 3;
$to_date = date(time());
$total_fine = 0;
//echo $to_date;
$from_date = strtotime($row['DateOfLent']."-1 day");
$day_diff = $to_date - $from_date;
$fine_days = floor($day_diff/(60*60*24));
$Total_days = $fine_days;
if($fine_days>=15){
$fine_days = $fine_days - 15;
$total_fine = $fine_days * $fine_per_day;
}
else{
$total_fine = 0;
}
?>
<tr>
<td><?php echo $row['BookId']; ?></td>
<td><?php echo $row['BookName']; ?></td>
<td><?php echo $row['Custody']; ?></td>
<td><?php echo date('Y-m-d', strtotime($row['DateOfLent'])); ?></td>
<td><?php echo $Total_days; ?></td>
<td><?php echo date('Y-m-d', strtotime($row['DateOfLent']."+15 day")); ?></td>
<?php if($Total_days>15){ ?>
<td><div class="button button1 due" ><ion-icon name="logo-usd" class="nav__icon"><div> </td>
<?php }
else{ ?>
<td><div class="button button1 nodue"><ion-icon name="checkmark-done-sharp" class="nav__icon"><div> </td>
<?php }
?>
</tr>
<?php
}
if ($result->num_rows == 0) {
?>
<tr>
<td><?php echo "0 results"; ?></td>
</tr>
<?php
}
$conn->close();
?>
</tbody>
</table>
</html>
<script>
function confirm(a)
{
var txt;
var person = prompt("Please enter your rollnumber:");
if (person == a)
{
alert ("ARE YOU SURE TO DELETE RECORD '"+a+" '");
return true;
} else
{
alert ("You entered wrong rollnumber");
return false;
}
}
</script>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>