-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.php
230 lines (193 loc) · 6.88 KB
/
products.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
require_once 'includes/header.inc.php';
$page = 0;
if (isset($_GET['page'])) {
$page = $_GET['page'];
}
if ($page > 2 || $page < 0) {
$page = 0;
}
?>
<link rel="stylesheet" href="css/products.css">
<div class="well">
<img class="header-img mx-auto" src="images/pan1.jpg" alt="header">
</div>
<!-- Insert selected product -->
<div class="container prod-cont bg-light mt-4">
<?php
switch ($page) {
case 0:
echo '
<div class="row justify-content-center">
<div class="col-8 col-lg-4">
<img src="images/paper1.jpg" alt="plastic">
</div>
<div class="col-8 col-lg-6">
<h2 class="mb-2"><b>Bio-Paper</b></h2>
<h4>
<ul>
<li>Available with all packs</li>
<li>Very durable</li>
<li>Great designs</li>
<li>Reliabale delivery</li>
<li>Bio degradable paper</li>
<li>Recycled</li>
<li>Data privacy, always.</li>
</ul>
</h4>
</div>
</div>
';
break;
case 1:
echo '
<div class="row justify-content-center">
<div class="col-8 col-lg-4">
<img src="images/bio-plastic.jpg" alt="plastic">
</div>
<div class="col-8 col-lg-6">
<h2 class="mb-2"><b>Bio-Plastic</b></h2>
<h4>
<ul>
<li>Premium and Standard packs only</li>
<li>Very durable</li>
<li>Great designs</li>
<li>Reliabale delivery</li>
<li>Food safe</li>
<li>Fully recycled</li>
<li>Data privacy, always.</li>
</ul>
</h4>
</div>
</div>
';
break;
case 2:
echo '
<div class="row justify-content-center">
<div class="col-8 col-lg-4">
<img src="images/alumn.jpg" alt="aluminium">
</div>
<div class="col-8 col-lg-6">
<h2 class="mb-2"><b>Aluminium</b></h2>
<h4>
<ul>
<li>Recyclabel aluminium</li>
<li>Very durable</li>
<li>Great designs</li>
<li>Reliabale delivery</li>
<li>Premium exclusive</li>
<li>Data privacy, always.</li>
</ul>
</h4>
</div>
</div>
';
break;
}
?>
</div>
<hr>
<h2 class="my-4 text-center"><i>Our Packaging Models</i></h2>
<div class="container examples bg-light">
<div class="row justify-content-center">
<img class="w-50 mx-auto" src="products/styles.jpg" alt="exam">
</div>
</div>
<br>
<hr>
<!-- Paper -->
<h2 class="text-center"><i>Our Products</i></h2>
<div class="container-fluid d-flex flex-row flex-wrap justify-content-center my-3" id="examples">
<?php
switch ($page) {
case 0:
echo '
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/paper.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Paper Pouch 1</h5>
<p>Basic paper package</p>
<p>This design is available with the <b>Basic pack</b></p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/pack.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Paper Pouch 2</h5>
<p>Great design with transparent middle part</p>
<p>This design is available with the <b>Standard pack</b></p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/custompaper.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Paper Box</h5>
<p>Premium paper package</p>
<p>This is a custom design only available with <b>Premium</b> packs</p>
</div>
</div>
';
break;
case 1:
echo '
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/pack2.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Aluminium Box</h5>
<p>Plastic package</p>
<p>Platic material only with <b>Standard</b> or <b>Premium</b> packs</p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/plastpack.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Plastic Pouch 3</h5>
<p>Plastic package</p>
<p>Platic material only with <b>Standard</b> or <b>Premium</b> packs</p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/plastdeg.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Plastic Pouch 3</h5>
<p>Plastic package</p>
<p>Platic material only with <b>Standard</b> or <b>Premium</b> packs</p>
</div>
</div>
';
break;
case 2:
echo '
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/alum3.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Aluminium Box</h5>
<p>Premium aluminium package</p>
<p>Aluminium material only with <b>Premium</b> packs</p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/alum2.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Aluminium Pouch 1</h5>
<p>Premium aluminium package</p>
<p>Aluminium material only with <b>Premium</b> packs</p>
</div>
</div>
<div class="card my-2 mx-2 bg-secondary text-light p-2" style="width: 18rem;">
<img class="card-img-top" style="width: 260px;height:200px;margin:auto;" src="products/alum4.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Aluminium Pouch 2</h5>
<p>Premium aluminium package</p>
<p>Aluminium material only with <b>Premium</b> packs</p>
</div>
</div>
';
break;
}
?>
</div>
<?php
include 'includes/footer.inc.php';
?>