-
Notifications
You must be signed in to change notification settings - Fork 7
/
delete_task.php
53 lines (43 loc) · 1.46 KB
/
delete_task.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
<?php
header("Access-Control-Allow-Origin: *");
header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
header('Access-Control-Allow-Headers: Content-Type, Content-Range, Content-Disposition, Content-Description');
header('Content-Type: application/json');
/*
* Following code will delete a task from table
* A task is identified by task id (taskId)
*/
// array for JSON response
$response = array();
$postdata = json_decode(file_get_contents("php://input"), true);
$taskId = $postdata['taskId'];
// check for required fields
if (isset($taskId)) {
// include db connect class
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// mysql update row with matched taskId
$result = mysqli_query($db->connect(),"DELETE FROM tasks WHERE taskId = $taskId");
// check if row deleted or not
if ($result) {
// successfully updated
$response["success"] = 1;
$response["message"] = "Task successfully deleted";
// echoing JSON response
echo json_encode($response);
} else {
// no task found
$response["success"] = 0;
$response["message"] = "No task found";
// echo no users JSON
echo json_encode($response);
}
} else {
// required field is missing
$response["success"] = 0;
$response["message"] = "Required field(s) is missing";
// echoing JSON response
echo json_encode($response);
}
?>