forked from pawel-zawadzki/ibd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzamowienie.php
75 lines (63 loc) · 1.76 KB
/
zamowienie.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
require_once 'vendor/autoload.php';
session_start();
use Ibd\Koszyk, Ibd\Zamowienia;
if (empty($_SESSION['id_uzytkownika'])) {
header("Location: index.php");
exit();
}
$koszyk = new Koszyk();
$zamowienia = new Zamowienia();
$listaKsiazek = $koszyk->pobierzWszystkie();
if (isset($_POST['zamow'])) {
$idZamowienia = $zamowienia->dodaj($_SESSION['id_uzytkownika']);
$zamowienia->dodajSzczegoly($idZamowienia, $listaKsiazek);
$koszyk->wyczysc(session_id());
header("Location: index.php?msg=3");
}
include 'header.php';
?>
<h1>Finalizacja zamówienia</h1>
<form method="post" action="">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th> </th>
<th>Tytuł</th>
<th>Autor</th>
<th>Kategoria</th>
<th>Cena PLN</th>
<th>Liczba sztuk</th>
<th>Cena razem</th>
</tr>
</thead>
<tbody>
<?php foreach ($listaKsiazek as $ks): ?>
<tr>
<td style="width: 100px">
<?php if (!empty($ks['zdjecie'])): ?>
<img src="zdjecia/<?=$ks['zdjecie']?>" alt="<?=$ks['tytul']?>" class="img-thumbnail" />
<?php else: ?>
brak zdjęcia
<?php endif; ?>
</td>
<td><?=$ks['tytul']?></td>
<td><?=$ks['id_autora']?></td>
<td><?=$ks['id_kategorii']?></td>
<td><?=$ks['cena']?> zł</td>
<td><?=$ks['liczba_sztuk']?></td>
<td><?=$ks['cena']*$ks['liczba_sztuk']?> zł</td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>
<td colspan="7" class="text-right">
<input type="submit" name="zamow" class="btn btn-primary btn-sm" value="Złóż zamówienie" />
<a href="koszyk.lista.php" class="btn btn-link btn-sm">Powrót do koszyka</a>
</td>
</tr>
</tfoot>
</table>
</form>
<?php include 'footer.php'; ?>