-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoheislaitteet.php
41 lines (30 loc) · 1.06 KB
/
oheislaitteet.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
<?php
include_once('nav.php');
include_once('mysql.php');
include_once('tuoteLuokka.php');
$tuotteet = array();
$db = new Tietokanta;
$tuotteet = $db->HaeOheislaitteet();
?>
<body>
<div class="col-md-2"></div>
<div class="col-md-8">
<h2 class="text-center">Oheislaitteet</h2>
<div class="row">
<?php foreach($tuotteet as &$tuote) { ?>
<div class="col-md-3">
<h4><?= $tuote->getNimi();?></h4>
<img src="<?= $tuote->getKuva();?>" id="products"/>
<p class="list-price text-danger"> Hinta <s><?= $tuote->getHinta();?></s></p>
<p class="price">Nyt vain: <?= $tuote->getAlennus();?></p>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#details-<?= $tuote->getId();?>">Osta</button>
</div>
</div>
<?php } ?>
<footer class="text-center" id="footer">© Copyright 2019-2020 Lyytin verkkokauppa Oy</footer>
</div>
<?php
include 'details-modal-oheislaite.php';
?>
</body>
</html>