-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduto.php
82 lines (76 loc) · 3.7 KB
/
produto.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
<?php
$conexao = mysqli_connect("127.0.0.1", "root", "", "WD43");
$dados = mysqli_query($conexao, "SELECT * FROM produtos WHERE id = $_GET[id]");
$produto = mysqli_fetch_array($dados)
?>
<?php
$cabecalho_css = '<link rel="stylesheet" href="css/produto.css">';
$cabecalho_title = $produto['nome'];
include("cabecalho.php"); ?>
<!--Conteudo-->
<div class="produto-back">
<div class="container">
<div class="produto">
<h1><?= $produto['nome'] ?></h1>
<p>por apenas <?= $produto['preco'] ?></p>
<form action="checkout.php" method="POST">
<fieldset class="cores">
<legend>Escolaha a cor:</legend>
<!--<input type="hidden" name="nome" value="<?= $produto['nome']?>">-->
<!--<input type="hidden" name="preco" value="<?= $produto['preco']?>">-->
<input type="hidden" name="id" value="<?= $produto['id'] ?>">
<input type="radio" name="cor" value="verde" id="verde" checked>
<label for="verde"><img src="img/produtos/foto<?= $produto['id'] ?>-verde.png" alt="verde"></label>
<input type="radio" name="cor" value="rosa" id="rosa">
<label for="rosa">
<img src="img/produtos/foto<?= $produto['id'] ?>-rosa.png" alt=""></label>
<input type="radio" name="cor" value="azul" id="azul">
<label for="azul">
<img src="img/produtos/foto<?= $produto['id'] ?>-azul.png" alt=""></label>
</fieldset>
<fieldset class="tamanhos">
<legend>Escolha o tamanho:</legend>
<input type="range" min="36" max="46" value="42" step="2" name="tamanho" id="tamanho">
<output for="tamanho" name="valortamanho">42</output>
</fieldset>
<input type="submit" class="comprar" value="comprar">
</form>
</div>
<div class="detalhes">
<h2>Detalhes do produto</h2>
<p><?= $produto['descricao'] ?>
</p>
<table>
<thead>
<tr>
<th>Característica</th>
<th>Detalhe</th>
</tr>
</thead>
<tbody>
<tr>
<td>Modelo</td>
<td>Cardigã 7845</td>
</tr>
<tr>
<td>Material</td>
<td>Algodão e poliester</td>
</tr>
<tr>
<td>Cores</td>
<td>Azul, Rosa e Verde</td>
</tr>
<tr>
<td>Lavagem</td>
<td>Lavar a mão</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<?php include("rodape.php"); ?>
<script src="js/jquery.js"></script>
<script src="js/produto.js"></script>
</body>
</html>