-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeleteTask.php
More file actions
37 lines (25 loc) · 953 Bytes
/
deleteTask.php
File metadata and controls
37 lines (25 loc) · 953 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>To-Do</title>
</head>
<body>
<?php
echo '<script>alert("Delete Page")</script>';
$task_id = $_GET['id'];
include 'connection.php';
$sql = "delete from task where id=".$task_id.";";
$result = mysqli_query($conn, $sql) or die("Query unsuccessful !");
echo '<script>alert("Note Deleted Successfully !")</script>';
header("Location: http://localhost/vivek/");
?>
<script src="js/jquery.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>