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
<?php
include('./includes/std.php');
 
pozycz::zwrot($_POST['kod']);
 
$title = 'Wypożyczanie książki';
include('./design/top.php');
 
gotowe::informacje($_POST['kod']);
 
echo '<form action="search.php" method="get" onsubmit="return ffalse(\'step2\')">
<p>KOD/IS*N: <input type="text" name="id" id="step21" required="required" /></p>
<p><input type="submit" value="Znajdź" /></p>
 
<script type="text/javascript">
document.getElementById(\'step21\').focus();
</script>
</form>';
 
include('./design/bottom.php');
?>