-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
36 lines (32 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<?php
session_start();
$count = 0;
require_once "./functions/database_functions.php";
$conn = db_connect();
$row = getAllBooks($conn);
require './template/header.php';
?>
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">EBFA Bookstore</h1>
</div>
<div class="row">
<?php foreach($row as $book) { ?>
<div class="col-xl-3 col-md-6 mb-4" type="button">
<div class="card shadow mb-4">
<div class="card-body">
<a href="book.php?ISBN=<?php echo $book['ISBN']; ?>" class="text-decoration-none">
<h6 class="m-0 font-weight-bold text-primary"><?php echo $book['Title']; ?></h6>
</a>
<p class="m-0 font-weight-bold"> $ <?php echo $book['Price']; ?> </p>
<p class="m-0 small text-gray-500"> <?php echo $book['Publisher']; ?> </p>
</div>
</div>
</div>
<?php } ?>
</div>
<?php
require './template/footer.php';
?>