-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
26 lines (25 loc) · 861 Bytes
/
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
<?php
session_start();
$count = 0;
// connecto database
$title = "Index";
require_once "./template/header.php";
//require_once "./functions/database_functions.php";
//$conn = db_connect();
//$row = select6LatestBooks($conn);
?>
<!-- Example row of columns -->
<!-- <p class="lead text-center text-muted">Latest books</p>-->
<!-- <div class="row">-->
<?php //foreach($row as $book) { ?>
<!-- <div class="col-md-3">-->
<!-- <a href="book.php?bookisbn=--><?php //echo $book['book_isbn']; ?><!--">-->
<!-- <img class="img-responsive img-thumbnail" src="./bootstrap/img/--><?php //echo $book['book_image']; ?><!--">-->
<!-- </a>-->
<!-- </div>-->
<!-- --><?php //} ?>
<!-- </div>-->
<?php
//if(isset($conn)) {mysqli_close($conn);}
//require_once "./template/footer.php";
?>