-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbook_view.php
40 lines (40 loc) · 1.36 KB
/
book_view.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
<?php
function GetBookView($book) {
$body = <<< _END
<table class="master">
<tr>
<td>
<a href="$book->link">
<img class="book" img alt="$book->title" src="$book->imageLink">
</a>
</td>
<td>
<table class="master">
<tr><p class="title">$book->title</p></tr>
<tr>
<table class="master">
<tr>
<td>
<p class="authors">Author(s): $book->authors</p>
</td>
<td>
<p class="authors">Rating: $book->rating</p>
</td>
</tr>
</table>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<p class="text">
$book->description
</p>
</td>
</tr>
</table>
_END;
return $body;
}
?>