-
Notifications
You must be signed in to change notification settings - Fork 7
/
get_all_tasks.php
53 lines (44 loc) · 1.44 KB
/
get_all_tasks.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 list all the tasks
*/
// array for JSON response
$response = array();
// include db connect class
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// get all tasks from task table
$result = mysqli_query($db->connect(), "SELECT *FROM tasks");
// check for empty result
if (mysqli_num_rows($result) > 0) {
// looping through all results
// tasks node
$response["tasks"] = array();
while ($row = mysqli_fetch_array($result)) {
// temp tasks array
$tasks = array();
$task["taskId"] = $row["taskId"];
$task["name"] = $row["name"];
$task["description"] = $row["description"];
$task["dateCreated"] = $row["dateCreated"];
$task["dateUpdated"] = $row["dateUpdated"];
// push single task into final response array
array_push($response["tasks"], $task);
}
// success
$response["success"] = 1;
// echoing JSON response
echo json_encode($response);
} else {
// no tasks found
$response["success"] = 0;
$response["message"] = "No tasks found";
// echo no tasks JSON
echo json_encode($response);
}
?>