-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
158 lines (126 loc) · 5.21 KB
/
index.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/responsive.css">
<title>Thrift Bookstore</title>
</head>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto+Slab:wght@500&display=swap"
rel="stylesheet">
<body>
<nav class="navbar h-nav-resp">
<ul class="nav-list v-class-resp">
<div class="logo">
<img src="img/logo.png" alt="logo">
<div class="webname">Thrift Bookstore</div>
</div>
<li><a href="#home">Home</a></li>
<li><a href="books.php">Books</a></li>
<li><a href="#contactus">Contact Us</a></li>
<li><a href="#about">About</a></li>
</ul>
<?php
if(isset($_SESSION['username'])){
echo ' <div class="rightNav"> <a href="logout.php"> Logout </a></div>
';
}
else{
echo '
<div class="rightNav"> <a href="login.php"> Login | </a>
<a href="Register.php"> Register </a> </div>
';
}
?>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<section class="background firstSection" id="home">
<div class="box-main">
<div class="firstHalf">
<b class="text-big">Thrift Books and Help Save The Environment! </b><br>
<p class="text-small"> In today's world, books are an everyday necessity in an individual’s life, but not only are new books more expensive, constantly buying new books contributes towards the higher demand for the production of paper for which many trees have to be cut down, ultimately leading towards environmental degradation. <br><br>
Thus as Thrifting books helps in saving not only your cash but also the life of a tree and ultimately the environment, so start Thrifting Books today!
</p>
</div>
<div class="secondHalf">
<img src="img/book.png" alt="img">
</div>
</div>
</section>
<section class="mainbox">
<div class="booksale"> Books Available For Sale <div>
<?php
include 'db.php';
$sql = "SELECT * FROM `bookinfo` LIMIT 4";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo '
<div class="card">
<div class="bookname">
<h3> BookName : '. $row["bookname"] .' </h3>
</div>
<div class="authorname bookinformation">
<p>Author Name: '. $row["authorname"] .' </p>
</div>
<div class="price bookinformation">
<p>Price: '. $row["price"] .'</p>
</div>
<div class="sellername bookinformation">
<p>Seller Name: '. $row["sellername"] .'</p>
</div>
<div class="contactno bookinformation">
<p>Contact Number: '. $row["contactnumber"] .'</p>
</div>
</div>';
}
} else {
echo "0 results";
}
?>
<button class="morebooks"> <a href="./books.php"> CLick To View More Books </a></button>
</section>
<section class="aboutus">
<div class="paras">
<b class="sectionTag text-big">More About Thrift Bookstore
</b>
<p class="sectionSubTag text-small">
Thrift Bookstore aims to provide the common
people an easily accessible platform through which they can buy and sell books
conveniently. Even though there are people who are willing to buy second hand books,
there aren’t many places where they can easily find them. Here users can search for the books that they need and browse through the variety
of books available on the server and get their hands on the one that interests them at
almost half of its original price.
</p>
</div>
<div class="thumbnail">
<img src="img/tree.png" alt="image" class="imgFluid" height="250px">
</div>
</section>
<section class="followus backcolor" id="contactus">
<h2>Find Us On Social Media: </h2>
<ul class="acc">
<li><a href="https://www.instagram.com/">Instagram</a><li>
<li><a href="https://www.facebook.com">Facebook</a></li>
<li><a href="https://www.twitter.com/">Twitter</a></li>
</ul>
</section>
<footer class="foott" id="about">
<p class="text-footer">
CopyRight © 2021 -www.ThriftBookstore.com -All Rights Reserved
</p>
</footer>
<script src="js/resp.js"></script>
</body>
</html>