-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrest_api.php
133 lines (87 loc) · 1.85 KB
/
rest_api.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
header("content-type: application/json");
$method = $_SERVER["REQUEST_METHOD"];
switch ($method) {
case 'GET':
getMethod();
break;
case 'POST':
$data = json_decode(file_get_contents('php://input'),true);
postMethod($data);
break;
case 'PUT':
$data = json_decode(file_get_contents('php://input'),true);
updateMethod($data);
break;
case 'DELETE':
$data = json_decode(file_get_contents('php://input'),true);
deleteData($data);
break;
}
//GET
function getMethod(){
require 'db.php';
$stmt = $pdo->query("SELECT * FROM tbl_student" );
$fetchData = $stmt->fetchAll(PDO::FETCH_ASSOC);
if ($fetchData) {
$rows['data'] [] = $fetchData;
echo json_encode($rows);
}
else{
echo '{"output" : "data not fetched"}';
}
}
//INSERT
function postMethod($data){
require 'db.php';
$name = $data["name"];
$dep = $data["dep"];
$age = $data["age"];
$stmt = $pdo->prepare("INSERT INTO tbl_student (name,dep,age) VALUES (?,?,?)");
$insert = $stmt->execute([
$name,
$dep,
$age
]);
if ($insert) {
echo '{"output" : "data inserted successfully"}';
}
else{
echo '{"output" : "data not inserted"}';
}
}
//UPDATE
function updateMethod($data){
require 'db.php';
$id = $data["id"];
$name = $data["name"];
$dep = $data["dep"];
$age = $data["age"];
$stmt = $pdo->prepare("UPDATE tbl_student SET name=?,dep=?,age=? WHERE id=?");
$update = $stmt->execute([
$name,
$dep,
$age,
$id
]);
if ($update) {
echo '{"output" : "data updated successfully"}';
}
else{
echo '{"output" : "data not updated"}';
}
}
//DELETE
function deleteData($data){
require 'db.php';
$id = $data["id"];
$stmt = $pdo->prepare("DELETE FROM tbl_student WHERE id=?");
$delete = $stmt->execute([$id]);
if ($delete) {
echo '{"output" : "data deleted successfully"}';
}
else{
echo '{"output" : "data not deleted"}';
}
}
?>