forked from ElisaLeroy/boutique-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
91 lines (37 loc) · 1.44 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
include_once 'header.php';
include_once 'data_base.php';
include_once 'my-functions.php';
include_once 'Catalogueclasse.php';
include_once 'ItemClasse.php';
?>
<section class="boutique">
<div class="div_articles">
<h1>Boutique</h1>
</div>
<form action="cart.php" method="POST" class="form_panier" target="_blank">
<div class="div_articles">
<?php
$category = new Catalogue($products);
//session_destroy();
foreach ($category->getItems() as $value) {
?>
<div class="item">
<h2><?php echo $value->getName(); ?></h2>
<img src="<?php echo $value->getImageUrl(); ?>" alt=" " class="img_item">
<h3 class="price">Prix TTC: <?php echo formatPrice($value->getPrice()); ?> € </h3>
<p class="price">Origine: <?php echo $value->getOrigine(); ?> </p>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit.</p>
<div class="item_form">
<!-- <input type="number" name="<?php //echo $value->getProductId()?>" class="input_number" value="0"> -->
<input type="checkbox" name="<?php echo $value->getProductId()?>">
</div>
</div>
<?php }
?>
<input type="submit" value="Ajouter">
</form>
</div>
</section>
</main>
<?php include_once 'footer.php' ?>