-
Notifications
You must be signed in to change notification settings - Fork 0
/
produtos.php
218 lines (187 loc) · 5.8 KB
/
produtos.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
<?php
include 'basedados/config.php';
session_start();
error_reporting(0);
$sql = "SELECT * FROM `produtos`";
$result = mysqli_query($conn, $sql);
if ($result->num_rows > 0) {
$row = mysqli_fetch_assoc($result);
$_SESSION['produto'] = array($row["id"], $row["nome"], $row["preco"], $row["categoria"], $row["srcimagem"]);
}
$sql = "SELECT * FROM `categoria`";
$result = mysqli_query($conn, $sql);
if ($result->num_rows > 0) {
$row = mysqli_fetch_assoc($result);
$_SESSION['categoria'] = array($row["id"], $row["categoria"]);
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="img/lifestyleStore.png" />
<title>Produtos</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style type="text/css">
body{
padding-top:0px;
padding-bottom:50px;
margin-bottom: 20px;
text-align:center;
border: 0px solid black;
padding: 25px;
background: url('img/bannerimage.jpg') center center no-repeat fixed;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.containerprincipal {
padding-right:15px;
padding-left:15px;
margin-right:auto;
margin-left:auto;
width: 75%;
min-height: 400px;
height:auto;
background: #FFF;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,.3);
padding: 40px 30px;
}
.containerprincipal .titulo{
color: #111;
font-weight: 500;
font-size: 1.1rem;
text-align: center;
margin-bottom: 20px;
display: block;
text-transform: capitalize;
}
.produto{
position:relative;
min-height:1px;
min-width: 200px;
padding-right:10px;
padding-left:10px;
float:left;
}
.btn {
display: block;
width: 100%;
padding: 15px 20px;
text-align: center;
border: none;
background: #a29bfe;
outline: none;
border-radius: 30px;
font-size: 1.5rem;
color: #FFF;
cursor: pointer;
transition: .3s;
}
</style>
</head>
<body>
<?php
require 'nav.php';
?>
<?php
require 'check_if_added.php';
if(is_array($_SESSION["produto"])){
include 'basedados/config.php';
$sql = ("SELECT * FROM `produtos`");
// executa a query
$result = mysqli_query($conn, $sql);
// transforma os dados em um array
$linhaproduto = mysqli_fetch_array($result);
// calcula quantos dados retornaram
$totalproduto = mysqli_num_rows($result);
}
if(is_array($_SESSION["categoria"])){
include 'basedados/config.php';
$sql = ("SELECT * FROM `categoria`");
// executa a query
$result = mysqli_query($conn, $sql);
// transforma os dados em um array
$linhacategoria = mysqli_fetch_array($result);
// calcula quantos dados retornaram
$totalcategoria = mysqli_num_rows($result);
}
?>
<?php
$sql =("SELECT * FROM `categoria`");
$result = mysqli_query($conn, $sql);
if ($result->num_rows > 0) {
$row = mysqli_fetch_assoc($result);
foreach ($result as $linhacategoria) {
$categoriaid = $linhacategoria["id"];
$categorianome = $linhacategoria["categoria"];
?>
<div class = "containerprincipal">
<p class="titulo" style="font-size: 3rem; font-weight: 800; margin-bottom: 25px;"><?php echo "$categorianome"?></p>
<div class= "row">
<?php
$sql =("SELECT * FROM `produtos`");
$result = mysqli_query($conn, $sql);
if ($result->num_rows > 0) {
$row = mysqli_fetch_assoc($result);
foreach ($result as $linhaproduto) {
$produtocategoria = $linhaproduto["categoria"];
$produtopreco = $linhaproduto["preco"];
$produtonome = $linhaproduto["name"];
$produtosrcimagem = $linhaproduto["srcimagem"];
$produtoid = $linhaproduto["id"];
$caminho = "addcarrinho.php?id=" . $produtoid;
if($categoriaid == $produtocategoria){
?>
<div class="col-md-3 col-sm-6">
<div class="thumbnail">
<img src=<?php echo"$produtosrcimagem" ?> alt=<?php echo "$categorianome"?>>
<center>
<div class="caption">
<h3><?php echo"$produtonome" ?></h3>
<p>Preço: <?php echo"$produtopreco"?>€</p>
<?php
if (isset($_SESSION['loginregister']) || isset($_SESSION["user"])) {
if(check_if_added_to_cart($produtoid)){
?>
<a href="#" class="btn btn-block btn-success disabled">Adicionado no carrinho</a>
<?php
}else{
?>
<a href="<?php echo $caminho?>" class="btn btn-block btn-primary" name="add" value="add" class="btn btn-block btr-primary">Comprar</a>
<?php
}
}
?>
</div>
</center>
</div>
</div>
<?php
}
}
}else{
?>
<p class="titulo" style="font-size: 2rem; font-weight: 800; margin-bottom: 25px; color:red">Sem Produtos</p>
<?php
}
?>
</div>
</div>
<br><br>
<?php
}
}else{
?>
<p class="titulo" style="font-size: 3rem; font-weight: 800; margin-bottom: 25px;">Sem Categorias</p>
<?php
}
?>
<?php
require 'footer.php';
?>
</body>
</html>