-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.php
More file actions
214 lines (178 loc) · 4.16 KB
/
Copy pathproducts.php
File metadata and controls
214 lines (178 loc) · 4.16 KB
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
<?php
session_start();
if(!isset($_SESSION["user_id"])){
$_SESSION["mensagem"] = "Página Restrita, faça login, ou cadastro para entrar.";
header("Location: login.php");
exit();
}
include "connect.php";
$sql = "SELECT * FROM products";
$result = $conn->query($sql);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Produtos</title>
</head>
<body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
nav {
background: linear-gradient(to right, #003366, #0099cc);
color: #fff;
padding: 10px;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
position: relative;
transition: color 0.3s;
}
nav ul li a::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
background-color: #fff;
bottom: -5px;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.3s ease-in-out;
}
nav ul li a:hover {
color: #00ccff;
}
nav ul li a:hover::before {
transform: scaleX(1);
}
.content-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.products-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 20px;
}
.product {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin: 10px;
padding: 20px;
text-align: center;
width: calc(33.33% - 20px);
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
transition: transform 0.3s;
}
.product:hover {
transform: translateY(-5px);
}
.product img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.product h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
.product p {
font-size: 1.2em;
margin-bottom: 10px;
}
.price {
font-size: 1.3em;
color: #0099cc;
}
.button {
background-color: #0099cc;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0077aa;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
}
@media (max-width: 768px) {
.product {
width: 100%;
}
}
</style>
<?php
if(isset($_SESSION['mensagem'])){
echo'<p>' . $_SESSION['mensagem'] . '</p>';
unset($_SESSION['mensagem']);
}
?>
<nav>
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="cart.php">Shopping Car</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="products.php">Products</a></li>
<li><a href="contact.php">Contact Us</a></li>
</ul>
</nav>
<div class="content-container">
<!--
Conteúdo da página de produtos
<div class="product">
<h2>Product Name</h2>
<p>Product description goes here.</p>
<p class="price">$19.99</p>
<form action="cart.php" method="post">
<input type="hidden" name="product_id" value="1">
<button type="submit" class="add-to-cart">Add to Cart</button>
</form>-->
<?php
$sql = "SELECT * FROM products";
$produtos = $conn->query($sql);
foreach ($produtos as $produto) {
echo "<div class ='product'>";
echo "<p>{$produto['name']}</p>";
echo "<p>Preço: R$ " . number_format($produto['price'], 2) . "</p>";
echo "<button clas ";
echo "</div>";
}
?>
</div>
<footer>
<p>© 2023 Sua Loja. Todos os direitos reservados.</p>
</footer>
</body>
</html>