-
Notifications
You must be signed in to change notification settings - Fork 0
/
old_delete.php
58 lines (45 loc) · 1.57 KB
/
old_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
<?php
require 'database.php';
$id = 0;
if ( !empty($_GET['Id'])) {
$id = $_REQUEST['Id'];
}
if ( !empty($_POST)) {
// keep track post values
$id = $_POST['Id'];
// delete data
$pdo = Database::connect();
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = "DELETE FROM 'doge'.'users' WHERE 'users' Id = ?";
$q = $pdo->prepare($sql);
$q->execute(array($id));
Database::disconnect();
header("Location: crud_index.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="scripts/bootstrap.min.js"></script>
<script src="scripts/jquery-2.1.0.js"></script>
</head>
<body>
<div class="container">
<div class="span10 offset1">
<div class="row">
<h3>Delete a User</h3>
</div>
<form class="form-horizontal" action="delete.php" method="post">
<input type="hidden" name="Id" value="<?php echo $id;?>"/>
<p class="alert alert-error">Are you sure to delete ?</p>
<div class="form-actions">
<button type="submit" class="btn btn-danger">Yes</button>
<a class="btn" href="crud_index.php">No</a>
</div>
</form>
</div>
</div> <!-- /container -->
</body>
</html>