- ./
- ./images
- ./includes/common
- ./includes/config
- ./includes/functions
- ./javascript
- ./styles
- ./templates/borrower
- ./templates/main
- ./templates/manage
- ./templates/search
./templates/search/book.htm
<table cellspacing="4" cellpadding="0" width="100%">
<tr>
<td colspan="2" valign="top" height="30">
<h1>%TITLE</h1>
</td>
<td rowspan="5">
<img src="images/thumbnail.php?maxw=250&maxh=250&src=%IMAGE" align="right">
</td>
</tr>
<tr>
<td valign="top" height="20">
<b>Author:</b>
</td>
<td valign="top" height="20">
%AUTHORS<a href="search.php?author=%AUTHOR">%AUTHOR</a>%AUTHORS
</td>
</tr>
<tr>
<td valign="top" height="20">
<b>Publisher:</b>
</td>
<td valign="top">
<a href="search.php?publisher=%PUBLISHER">%PUBLISHER</a>
</td>
</tr>
<tr>
<td colspan="2" valign="top">
<form name="borrow" action="book.php?id=%ID&loan=true" method="post">
<input type="submit" name="b" value="Borrow" class="submit">
</form>
</td>
</tr>
</table>