%
Include("intro.inc");
%>
Loans:
| Date of loan |
Return date |
Loaner |
<%
Request("SELECT * FROM loans.xml, clients.xml
WHERE (LoanClient = ClientId)
ORDER BY LoanDeparture DESC ");
Display("templates/loansmanage.tpl");
DisplayEmpty("templates/boxtocomeempty.tpl");
%>
<%
Include("outro.inc");
%>