-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditar.php
51 lines (40 loc) · 1.48 KB
/
editar.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
<?php
include_once 'db_connect.php';
include_once 'header.php';
if(isset($_GET['id'])):
$id = mysqli_escape_string($connect, $_GET['id']);
$sql = "SELECT * FROM produtos WHERE id = '$id'";
$resultado = mysqli_query($connect, $sql);
$dados = mysqli_fetch_array($resultado);
endif;
?>
<div class="row">
<div class="col s12 m6 push-m3 ">
<h3 class="light">Editar produto</h3>
<form action="update.php" method="POST">
<input type="hidden" name="id" value="<?php echo $dados['id'];?>">
<div class="input-field col s12">
<input type="text" name="nome" id="nome" value="<?php echo $dados['nome'];?>">
<label for="nome">Nome do produto</label>
</div>
<div class="input-field col s12">
<input type="text" name="marca" id="marca" value="<?php echo $dados['marca'];?>">
<label for="marca">Marca do produto</label>
</div>
<div class="input-field col s12">
<input type="text" name="preço" id="preço" value="<?php echo $dados['preço'];?>">
<label for="preço">Preço do produto</label>
</div>
<div class="input-field col s12">
<input type="text" name="quantidade" id="quantidade" value="<?php echo $dados['quantidade'];?>">
<label for="quantidade">Quantidade do produto</label>
</div>
<button type="submit" name="btn-editar" class="btn black">Atualizar</button>
<a href="areaprivada.php" class="btn green">Lista de produtos</a>
</form>
</div>
</div>
<?php
include_once 'footer.php';
?>
<a href="Sair.php" class="btn blue"> Sair </a>