- ./
- ./images
- ./includes/common
- ./includes/config
- ./includes/functions
- ./javascript
- ./styles
- ./templates/borrower
- ./templates/main
- ./templates/manage
- ./templates/search
./templates/search/results.htm
<table cellspacing="0" cellpadding="0" width="100%" class="inner">
<tr>
<th>
Book Title
</th>
<th>
Author
</th>
<th>
Publisher
</th>
</tr>
%ROW
<tr>
<td>
<a href="book.php?id=%ID">%TITLE</a>
</td>
<td>
%AUTHORS<a href="search.php?author=%AUTHOR">%AUTHOR</a>%AUTHORS
</td>
<td>
<a href="search.php?publisher=%PUBLISHER">%PUBLISHER</a>
</td>
</tr>
%ROW
</table>