-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathborrow.php
227 lines (194 loc) · 8.22 KB
/
borrow.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
<?php
session_start();
if(!isset($_SESSION["user"]))
header("Location:index.php");
include 'count.php'; //shows badge notification
if(isset($_GET["request"])) {
$bid = $_GET['request'];
$to_user = $_GET['to_user'];
$query = "select * from users where id='" . $_SESSION['user_id'] . "'";
$pts = mysqli_fetch_array(mysqli_query($link,$query));
$pts = $pts['points'];
if($pts >= 2) {
header("Location: query.php?request_again=$bid&to_user=$to_user");
}
else {
$msg = "Not enough points!!! Gain points by adding books or by sharing books with others.";
echo '<div class="alert alert-danger alert-dismissable fade in" style="position:absolute;margin-top:600px;margin-left:40%;width:45%">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>'.$msg.'</div>';
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" type="image/png" href="Images/favicon.png">
<title>Borrowed</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<script type="text/javascript" src="JS/script.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row"><!--start of row-->
<div class="col-md-3">
<div class="row"><!--nested row starts-->
<div class="col-md-3" align="center" style="background-color:#1A1927;position:fixed"><!--libromate logo-->
<a href="dashboard.php"><img src="Images/logo.png" style="height:100px;"></a>
</div>
<div id="dashboard_left_col" style="padding-top:100px"><!--start of vertical navbar-->
<ul>
<br>
<p>MENU</p>
<li><a href="dashboard.php">
<span class="glyphicon glyphicon-home"></span> Dashboard</a>
</li>
<li><a href="profile.php">
<span class="glyphicon glyphicon-user"></span> Profile</a>
</li>
<br>
<p>BOOKS</p>
<li><a href="add.php">
<span class="glyphicon glyphicon-plus"></span> Add</a>
</li>
<li><a href="modify.php">
<span class="glyphicon glyphicon-edit"></span> Modify</a>
</li>
<li><a href="browse.php">
<span class="glyphicon glyphicon-eye-open"></span> Browse all</a>
</li>
<br>
<p>STATUS</p>
<li><a href="borrow.php" class="active">
<span class="glyphicon glyphicon-hourglass"></span> Borrowed
<?php
if($borrow!=0) {
echo "<span class='badge'>$borrow</span>";
}
?>
</a>
</li>
<li><a href="lent.php">
<span class="glyphicon glyphicon-book"></span> Lent
<?php
if($lent!=0) {
echo "<span class='badge'>$lent</span>";
}
?>
</a>
</li>
<br>
<p>SESSION</p>
<li><a href="logout.php">
<span class="glyphicon glyphicon-log-out"></span> Logout</a>
</li>
<li><a href="trash.php">
<span class="glyphicon glyphicon-trash"></span> Trash</a>
</li>
</ul>
</div><!--end of vertical navbar-->
</div><!--end of nested row-->
</div><!--end of col-md-3-->
<?php
include "topnav.php";
?>
<div class="container-fluid">
<br>
<div style="font-size:15px;padding-left:70px">
<?php
require_once('db_connect.php'); //connect with database
$query = "SELECT * FROM requests AS r, books AS b, users as u
WHERE b.bid=r.bid AND u.id=b.owner AND r.to_user=u.id AND r.from_user='" . $_SESSION['user_id'] . "'";
$result = mysqli_query($link,$query);
if(mysqli_num_rows($result)==0)
echo nl2br("\nYou have not requested any book yet !!");
else
echo nl2br("\nFollowing are the books requested by you:");
echo nl2br("\n\n");
?>
</div>
<div class="table-responsive" style="padding-left:70px;padding-right:50px">
<table class="table" align="center">
<thead><!--table header start-->
<tr>
<th>S.No.</th>
<th>Book Id</th>
<th>Book Name</th>
<th>Book Author</th>
<th>Lender Details</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead><!--table header close-->
<tbody>
<!--fetch and display data from MySQL-->
<?php
$i=1;
while($row = mysqli_fetch_array($result)) {
if($row['sn'] == 1)
echo "<tr style='background-color:white'>";
else
echo "<tr>";
echo "<td>" . $i . "</td>";
echo "<td>" . $row["bid"] . "</td>";
echo "<td>" . $row["bname"] . "</td>";
echo "<td>" . $row["author"] . "</td>";
if($row['status'] == 1) {
$info_query = "SELECT * from users AS u,requests AS r,books AS b WHERE u.id='".$row['id']."' AND r.bid=b.bid";
$info_result = mysqli_query($link,$info_query);
$info = mysqli_fetch_array($info_result);
?>
<td>
<a href='#' data-toggle='popover' data-trigger='focus' data-content="
Email: <?php echo $info['email'] ?><br>
Mobile: <?php echo $info['mobile']; ?>">
<?php echo $info['name']; ?>
</a>
</td>
<?php
}
else {
echo "<td>" . $row["name"] . "</td>";
}
if($row["status"] == 0) {
echo "<td><button class='btn btn-warning' style='width:100px'>Pending</button></td>";
echo "<td><a href='query.php?return=" . $row['bid'] . "&to_user=" . $row['id'] . "'>
<input class='btn btn-primary' type='button' name='cancel' value='Cancel Request' style='width:143px'>
</a></td>";
}
else if($row["status"] == 1) {
echo "<td><button class='btn btn-success' style='width:100px'>Accepted</button></td>";
echo "<td><a href='query.php?return=" . $row['bid'] . "&to_user=" . $row['id'] ."'>
<input class='btn btn-primary' type='button' name='return' value='Return Book' style='width:143px'>
</a></td>";
}
else if($row["status"] == 2) {
echo "<td><button class='btn btn-danger' style='width:100px'>Declined</button></td>";
echo "<td><a href='borrow.php?request=" . $row['bid'] . "&to_user=" . $row['id'] . "'>
<input class='btn btn-primary' type='button' name='request' value='Request Again' style='width:143px'>
</a></td>";
}
echo "</tr>";
++$i;
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div><!--end of col-md-9-->
<?php
$sql="UPDATE requests SET sn=0 WHERE from_user='" . $_SESSION['user_id'] . "'";
mysqli_query($link,$sql);
?>
</div><!--end of row-->
</div><!--end of container fluid-->
</body>
</html>