33 lines
451 B
Plaintext
33 lines
451 B
Plaintext
<%
|
|
Include("intro.inc");
|
|
%>
|
|
|
|
Medical instruments:
|
|
<p />
|
|
|
|
<div class="Data">
|
|
<table class="Data">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Category</th>
|
|
<th>Serial</th>
|
|
</tr>
|
|
<%
|
|
Request("SELECT * FROM items.xml, categories.xml
|
|
WHERE (ItemCat = CatId)
|
|
ORDER BY ItemName ");
|
|
Display("templates/itemmanage.tpl");
|
|
DisplayEmpty("templates/boxtocomeempty.tpl");
|
|
%>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p />
|
|
|
|
<%
|
|
Include("outro.inc");
|
|
%>
|