-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprodutos.php
104 lines (96 loc) · 3.55 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
<?php
include("crud.php");
if (!isset($_SESSION['loginok']))
{
header("Location: login.php");
die();
}
#recuperando o registro para edicao
if(isset($_GET['edit'])){
$id = $_GET['edit'];
$update = true;
$record = mysqli_query($db, "SELECT * FROM produtos WHERE id=$id");
#testa o retorno do select e cria o vetorcom os registros trazidos
#if(count($record) == 1) {
if($record){
$n = mysqli_fetch_array($record);
$nome = $n['nome'];
$descricao = $n['descricao'];
}
}
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro de Produtos</title>
<link rel="stylesheet" type="text/css" href="css/css.css">
</head>
<body>
<!-- testa se a sessão existe e exibe sua mensagem -->
<?php if(isset($_SESSION['message'])) : ?>
<div class="msg">
<?php
#exibe mensagem da sessao
echo $_SESSION['message'];
#apaga a sessao
unset($_SESSION['message']);
?>
</div>
<?php endif?>
<!-- ------------------------------------------------- -->
<!-- recupera os registros do banco de dados e exibe na página -->
<?php $results = mysqli_query($db, "SELECT * FROM produtos"); ?>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Descrição</th>
<th colspan="2">Ação</th>
</tr>
</thead>
<!-- cria o vetor com os registros trazidos do select -->
<!-- Início while -->
<?php while ($rs = mysqli_fetch_array($results)) { ?>
<tr>
<td><?php echo $rs['id']?>
<td><?php echo $rs['nome'] ?></td>
<td><?php echo $rs['descricao'] ?></td>
<td>
<a href="produtos.php?edit=<?php echo $rs['id']; ?>" class="edit_btn">Alterar</a>
</td>
<td>
<a href="crud.php?del=<?php echo $rs['id']; ?>" class="del_btn">Remover</a>
</td>
</tr>
<?php } ?>
<!-- Fim while -->
</table>
<!-- ------------------------------------------------------------ -->
<form method="post" action="crud.php">
<!-- campo oculto - contem o id do registro que vai ser atualiado -->
<input type="hidden" name="id" value="<?php echo $id; ?>">
<div class="input-group">
<label>Produto</label>
<!-- <input type="text" name="nome" value=""> -->
<input type="text" name="nome" value="<?php echo $nome; ?>">
</div>
<div class="input-group">
<label>Descrição</label>
<!-- <input type="text" name="descricao" value=""> -->
<input type="text" name="descricao" value="<?php echo $descricao; ?>">
</div>
<div class="input-group">
<!-- <button class="btn" type="submit" name="adiciona">Adicionar</button> -->
<?php if ($update == true) : ?>
<button class="btn" type="submit" name="altera" style="background: #556B2F;">Alterar</button>
<button class="btn" type="submit" name="voltar">Voltar</button>
<?php else : ?>
<button class="btn" type="submit" name="adiciona">Adicionar</button>
<button class="btn" type="submit" name="voltar">Voltar</button>
<?php endif ?>
</div>
</form>
</body>
</html>