Jacek Kowalski
2019-12-16 07517ae563097e04e91ea3fae2c2ca1cf2309b86
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
41
42
43
44
45
46
47
48
<?php
$title = 'Wyszukiwanie i wypożyczanie';
include('design/top.php');
?>
 
<table class="main">
<tr>
<td>
 
<form action="search.php" method="get" onsubmit="return ffalse('step1')">
<p>KOD/IS*N: <input type="text" name="id" id="step11" required="required" /><br />
Półka, rząd: <input type="text" name="polka" size="3" maxlength="3" />
/ <input type="text" name="rzad" size="3" maxlength="3" /></p>
<p><input type="submit" value="Znajdź" /></p>
 
<p><i>Przy ręcznym wpisywaniu ośmiocyfrowego <br /> numeru ISSN, poprzedź go zerem</i></p>
</form>
 
<script type="text/javascript">
document.getElementById('step11').focus();
</script>
 
<hr />
 
<a href="list_all.php">Pełna lista książek</a> <br />
<a href="list_borrowed.php">Wypożyczone</a> <br />
<a href="list_repulsed.php">Wycofane</a>
 
</td>
<td>
 
<form action="search.php" method="get">
<p>Tytuł: <input type="text" name="tytul" /><br />
Autor: <input type="text" name="autor" /><br />
Wydanie: <input type="text" name="wydanie" /></p>
<p>Miejsce: <input type="text" name="miejsce" /><br />
Rok: <input type="text" name="rok" /><br />
Wydawnictwo: <input type="text" name="wydawnictwo" /></p>
<p><input type="submit" value="Szukaj" /></p>
</form>
 
</td>
</tr>
</table>
 
<?php
include('design/bottom.php');
?>