-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditar-cliente.php
39 lines (31 loc) · 1.24 KB
/
editar-cliente.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
<h1>Editar Cliente</h1>
<?php
// Verifica se existe um cliente válido com o CPF informado
$id = $_REQUEST["id"];
$sql = "SELECT * FROM cliente WHERE id_cliente=?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("s", $id);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows == 0) {
print "<script>alert('Cliente não encontrado')</script>";
} else {
$row = $result->fetch_object();
?>
<!-- Formulário para editar o cliente -->
<form action="?page=salvar_cliente" method="POST">
<!-- Campos ocultos para a ação e ID do cliente -->
<input type="hidden" name="acao" value="editar">
<input type="hidden" name="id" value="<?php echo htmlspecialchars($row->id_cliente); ?>">
<div class="mb-3">
<label>Nome:</label>
<input type="text" name="nome" value="<?php echo htmlspecialchars($row->nome); ?>" class="form-control">
</div>
<div class="mb-3">
<label>Email:</label>
<input type="email" name="email" value="<?php echo htmlspecialchars($row->email); ?>" class="form-control">
</div>
<!-- Botão para salvar as alterações -->
<button type="submit" class="btn btn-primary">Salvar</button>
</form>
<?php } ?>