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
<?php
include('./includes/std.php');
 
validate::MSC($_POST['regal'], $_POST['polka'], $_POST['rzad']);
if(!empty($_POST['regal2']) || !empty($_POST['polka2']) || !empty($_POST['rzad2'])) {
    validate::MSC($_POST['regal2'], $_POST['polka2'], $_POST['rzad2']);
}
 
$arr = array();
 
if(!empty($_POST['regal'])) {
    $arr['regal'] = $_POST['regal'];
}
if(!empty($_POST['polka'])) {
    $arr['polka'] = $_POST['polka'];
}
if(!empty($_POST['rzad'])) {
    $arr['rzad'] = $_POST['rzad'];
}
 
$aff = ksiazki::miejsce($_POST['regal2'], $_POST['polka2'], $_POST['rzad2'], $arr);
 
$title = 'Położenie książki';
include('design/top.php');
 
echo '<p>Ustalono położenie '.$aff.' książek.</p>';
 
include('design/bottom.php');
?>