-
Notifications
You must be signed in to change notification settings - Fork 0
/
modbook.php
43 lines (37 loc) · 1.12 KB
/
modbook.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
<?php
// Initialize the session
session_start();
// If session variable is not set it will redirect to login page
if(!isset($_SESSION['username']) || empty($_SESSION['username'])){
header("location: login.php");
exit;
}
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Update Book</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<?php include_once("template_pageTop.php"); ?>
<div id="pageMiddle">
<div id="pmleft"></div>
<div id="pmcenter">
<br>
<div style="font-size:50px;font-family:'Palatino Linotype', 'Book Antiqua', Palatino, serif">Select the Book that you have read</div>
<?php
include_once('connect.php');
$username=$_SESSION['username'];
$books = mysqli_query($conn,"SELECT * FROM Book WHERE username='$username' AND Readd=0 ORDER BY dateadded DESC");
while ($row = mysqli_fetch_array($books)) {
$name=$row['Bname'];
/*echo "<br><br>";*/
echo "<a href='bookmod.php?link=$name'>$name</a><br>";
}
?>
<br>
</body>
</html>