-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.php
executable file
·67 lines (54 loc) · 2.94 KB
/
details.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Book Store Template, Free CSS Template, TemplateMo.com</title>
<meta name="keywords" content="Book Store Template, Free CSS Template, CSS Website Layout, CSS, HTML, TemplateMo.com" />
<meta name="description" content="Book Store Template, Free CSS Template, Download CSS Website from TemplateMo.com" />
<link href="templatemo_style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php $book_id = $_GET['book']; ?>
<?php include 'includes.php'; ?>
<!-- Free CSS Templates from www.templatemo.com -->
<div id="templatemo_container">
<div id="templatemo_menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="new-book.php">add</a></li>
</ul>
</div> <!-- end of menu -->
<div id="templatemo_header">
<div id="templatemo_special_offers">
</div>
<div id="templatemo_new_books">
</div>
</div> <!-- end of header -->
<div id="templatemo_content">
<div id="templatemo_content_left">
<div class="templatemo_content_left_section">
</div>
</div> <!-- end of content left -->
<div id="templatemo_content_right">
<h1>
<?php echo $book['book_name']; ?>
<span>(by <?php echo $book['book_author_name'];?>)</span>
</h1>
<div class="image_panel"><img src="<?php echo $book['book_cover'];?>" alt="CSS Template" width="100" height="150" /></div>
<ul>
<li>By Deke <a href="#"><?php echo $book['book_author_name'];?></a></li>
<li>$<?php echo $book['book_price'];?></li>
</ul>
<p><?php echo $book['book_desc'];?></p>
<div class="cleaner_with_height"> </div>
</div> <!-- end of content right -->
<div class="cleaner_with_height"> </div>
</div> <!-- end of content -->
<div id="templatemo_footer">
<a href="index.html">Home</a> | <a href="index.html">Search</a> | <a href="index.html">Books</a> | <a href="#">New Releases</a> | <a href="#">FAQs</a> | <a href="#">Contact Us</a><br />
Copyright © 2048 <a href="#"><strong>Your Company Name</strong></a> | <a href="http://www.iwebsitetemplate.com" target="_parent">Website Templates</a> by <a href="http://www.templatemo.com" target="_parent">Free CSS Templates</a>
</div> <!-- end of footer -->
<!-- Free CSS Template www.templatemo.com -->
</div> <!-- end of container -->
<div align=center>This template downloaded form <a href='http://all-free-download.com/free-website-templates/'>free website templates</a></div></body>
</html>