forked from glaucia86/projeto.crud.php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete.php
59 lines (51 loc) · 1.98 KB
/
delete.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
<?php
require 'banco.php';
$id = 0;
if(!empty($_GET['id']))
{
$id = $_REQUEST['id'];
}
if(!empty($_POST))
{
$id = $_POST['id'];
//Delete do banco:
$pdo = Banco::conectar();
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = "DELETE FROM pessoa where id = ?";
$q = $pdo->prepare($sql);
$q->execute(array($id));
Banco::desconectar();
header("Location: index.php");
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<title>Deletar Contato</title>
</head>
<body>
<div class="container">
<div class="span10 offset1">
<div class="row">
<h3 class="well">Excluir Contato</h3>
</div>
<form class="form-horizontal" action="delete.php" method="post">
<input type="hidden" name="id" value="<?php echo $id;?>" />
<div class="alert alert-danger"> Deseja excluir o contato?
</div>
<div class="form actions">
<button type="submit" class="btn btn-danger">Sim</button>
<a href="index.php" type="btn" class="btn btn-default">Não</a>
</div>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>