sub_question.php
3.19 KB
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
<?php
namespace count_form\app\entity;
use count_form\app\db\Main;
class sub_question extends Main
{
public function getAllData()
{
$sql =
'
SELECT * FROM
sub_question
ORDER BY
id ASC';
$result = $this->db->query($sql);
return $result->fetchAll(\PDO::FETCH_ASSOC);
}
public function getOneData($id)
{
$sql =
'
SELECT * FROM
sub_question
WHERE
id = :id
';
$stmt = $this->db->prepare($sql);
$stmt->bindValue(":id", $id);
$stmt->execute();
return $stmt->fetch(\PDO::FETCH_ASSOC);
}
public function deleteData($id){
$sql =
' DELETE
FROM
sub_question
WHERE
id = :id
';
$stmt = $this->db->prepare($sql);
$stmt->bindValue(":id", $id);
$stmt->execute();
}
public function addData($data)
{
$sql =
'
INSERT INTO
sub_question
(
text,
input,
required,
question_id,
key_num
)
VALUES
(
:text,
:input,
:required,
:question_id,
:key
)
';
$stmt = $this->db->prepare($sql);
$stmt->bindValue(":text", $data['text']);
$stmt->bindValue(":input", $data['input']);
$stmt->bindValue(":required", $data['required']);
$stmt->bindValue(":question_id", $data['question_id']);
$stmt->bindValue(":key", $data['key']);
$stmt->execute();
}
public function UpdateData($data,$id)
{
$sql =
'
UPDATE
sub_question
SET
text = :text,
input = :input,
required = :required,
key_num = :key
WHERE
id = :id
';
$stmt = $this->db->prepare($sql);
$stmt->bindValue(":id", $id);
$stmt->bindValue(":text", $data['text']);
$stmt->bindValue(":input", $data['input']);
$stmt->bindValue(":required", $data['required']);
$stmt->bindValue(":key", $data['key']);
$stmt->execute();
}
function getSelectData($id)
{
$sql =
'
SELECT * FROM
sub_question
WHERE
question_id IN ('.$id.')
ORDER BY
id ASC';
$result = $this->db->query($sql);
return $result->fetchAll(\PDO::FETCH_ASSOC);
}
}