-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduto_view.php
99 lines (83 loc) · 4.29 KB
/
produto_view.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
<?php
$produtos = $_REQUEST['produtos'];
?>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>SC - Produtos</title>
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500,700">
<link rel="stylesheet" href="../assets/css/styles.min.css">
<style>
</style>
</head>
<body style="background-color: rgb(110,126,142);">
<?php
$page=1;
require_once '../View/menu.php';
require_once '../View/alerta.php';
?>
<div class="row">
<div class="col">
<h1 class="text-center text-light" style="margin-top: 44px;margin-bottom: 36px;">Produtos</h1>
</div>
</div>
<div class="contact-clean" style='padding-top: 0px;'>
<form action="ProdutoController.php" method="post">
<h2 class="text-center">Cadastrar Produtos</h2>
<div class="form-group"><input class="form-control" type="text" name="modelo" placeholder="Modelo" required></div>
<div class="form-group"><input class="form-control" type="text" name="cor" placeholder="Cor" required></div>
<div class="form-group"><input class="form-control" name="tamanho" placeholder="Tamanho" required></div>
<div class="form-group"><button class="btn btn-primary btn-block" type="submit" name="Cadastrar">Cadastrar</button></div>
</form>
</div>
<div class="row">
<div class="col-xl-8 offset-xl-2">
<div class="table-responsive table-borderless table-hover table-primary">
<table class="table table-bordered">
<thead>
<tr id="darker">
<th>Modelo</th>
<th>Cor</th>
<th>Tamanho</th>
<th>Atualizar</th>
<th>Remover</th>
</tr>
</thead>
<tbody>
<?php
if(isset($produtos)){
$produtos = array_reverse($produtos);
$count = count($produtos) - 1;
foreach($produtos as $produto){
echo "<tr>";
echo "<form action='ProdutoController.php' method='POST'>";
echo "<td><input type='text' class='form-control' name='modelo' value ='{$produto[0]}'></td>";
echo "<td><input type='text' class='form-control' name='cor' value ='{$produto[1]}'></td>";
echo "<td><input type='text' class='form-control' name='tamanho' value ='{$produto[2]}'></td>";
echo "<input name='id' value='{$count}' hidden>";
echo "<td><button class='btn btn-success' type='submit' name='atualizar'>Atualizar</button></td>";
echo "<td><button class='btn btn-danger' type='submit' name='apagar'>Remover</button></td>";
echo "</form>";
echo "</tr>";
$count--;
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
<script src="../assets/js/jquery.min.js"></script>
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
<?php
if(isset($mensagem)){
echo "<script>$('.alert').show().delay(1500).fadeOut(400);</script>";
unset($mensagem);
unset($_SESSION['mensagem']);
}
?>
</body>
</html>