-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathADreturn_view.php
92 lines (68 loc) · 1.8 KB
/
ADreturn_view.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Return Book</title>
<link rel="stylesheet" type="text/css" href="screen.css" media="screen" />
</head>
<body>
<div id="header">
<img src="logo.png" name="logo" />
<p id="layoutdims"><marquee>Welcome to Online Library Management System</marquee></p>
</div>
<div class="colmask threecol">
<div class="colmid">
<div class="colleft">
<div class="col1">
<!-- Column 1 start -->
<br><br><br>
<?php
include 'conn.php';
$data = $mysqli->query("SELECT * FROM claimreturn");
echo "<table border='1' align='center'>
<th>Return claimID</th>
<th>Issue Id</th>
<th>MemberId</th>
<th>Member Name</th>
<th>Book ID</th>
<th>Book Name</th>
<th>Return claim date</th>
<th>Action</th>";
$no=1;
while ($r=$data->fetch_array())
{
echo "<tr>
<td>$r[claim_return_id]</td>
<td>$r[Issue_id]</td>
<td>$r[Mid]</td>
<td>$r[Name]</td>
<td>$r[Bid]</td>
<td>$r[Bname]</td>
<td>$r[returnclaim_date]</td>
<td><a href='ADreturn.php?claim_return_id=$r[claim_return_id]'>Return book</a></td>
</tr>";
$no++;
}
echo "</table>";
?>
<br><br><br><br><br><br>
<!-- Column 1 end -->
</div>
<div class="col2">
<!-- Column 2 start -->
<br><br>
<a href="admin.php" style="font-size:25px; background-color:transparent;text-decoration:none; color:#369; "><b>Home</b></a><br><br>
<!-- Column 2 end -->
</div>
<div class="col3">
<!-- Column 3 start -->
<div id="ads">
</div>
<!-- Column 3 end -->
</div>
</div>
</div>
</div>
<div id="footer">
</div>
</body>
</html>