-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcategory.php
232 lines (190 loc) · 6.07 KB
/
category.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
include_once('connect.php');
class category {
// instance vars
protected $mysqli;
protected $id;
protected $name;
public function __construct() {
$this->mysqli = dbConnect();
}
public function getCategory($id) {
$this->id = $id;
$sql = "select * from categories where id = " . $id;
$result = $this->mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$this->name = $row['name'];
}
} else {
return false;
}
}
public function addCategory() {
$sql = "insert into categories (name) values (?)";
if ($insert_stmt = $this->mysqli->prepare($sql)) {
$insert_stmt->bind_param('s',$this->name);
if (! $insert_stmt->execute()) {
return false;
}
}
}
public function delete() {
$sql = "delete from categories
where id = ?";
if ($delete_stmt = $this->mysqli->prepare($sql)) {
$delete_stmt->bind_param('i',$this->id);
if (! $delete_stmt->execute()) {
return false;
}
}
}
public function update() {
$sql = "update categories set name = ? where id = ?";
if ($update_stmt = $this->mysqli->prepare($sql)) {
$update_stmt->bind_param('si',$this->name, $this->id);
if (! $update_stmt->execute()) {
return false;
}
}
}
public static function displayCategoryOptionList() {
$mysqli = dbConnect();
$sql = "select * from categories";
$result = $mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
echo '<option value="">Choose Category</option>';
while($row = $result->fetch_assoc()) {
echo '<option value="' . $row['id']. '">'. $row['name'] .' </option>';
}
} else {
echo "No categories added yet...";
}
$mysqli->close();
}
public static function displayCategoryEditList() {
$mysqli = dbConnect();
$sql = "select * from categories";
$result = $mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo '<form class="form form-inline" method="post">
<input type="text" name="categoryId" value="'.$row['id'].'" hidden/>
<input name="categoryName" class="form-control" type="text" value="'.$row['name'].'" ' . $row['name'] . '</input>
<button type="submit" name="editCategory" class="btn btn-success" type="submit">Save</button>
<button type="submit" name="deleteCategory" class="btn btn-danger" type="submit">Delete</button>
</form>';
}
} else {
echo "No categories added yet...";
}
$mysqli->close();
}
public function getId() {return $this->id;}
public function getName() {return $this->name;}
public function getMysqli() {return $this->mysqli;}
public function setName($name) {$this->name = $name;}
public function setId($id) {$this->id = $id;}
}
class subCategory extends category {
// instance vars
private $categoryId;
function __construct() {
//parent::__construct();
$this->mysqli = dbConnect();
}
public function getSubCategory($id) {
$this->id = $id;
$sql = "select * from subcategories where id = " .$id;
$result = $this->mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$this->name = $row['name'];
$this->categoryId = $row['categoryid'];
} return true;
} return false;
}
public function addSubCategory() {
$sql = "insert into subcategories (name,categoryid) values (?,?)";
if ($insert_stmt = $this->mysqli->prepare($sql)) {
$insert_stmt->bind_param('si',$this->name, $this->categoryId);
if (! $insert_stmt->execute()) {
return false;
}
}
}
public function update() {
$sql = "update subcategories
set name = ?
where id = ?";
if ($update_stmt = $this->mysqli->prepare($sql)) {
$update_stmt->bind_param('si',$this->name, $this->id);
if (! $update_stmt->execute()) {
return false;
}
}
}
public function delete() {
$sql = "delete from subcategories
where id = ?";
if ($delete_stmt = $this->mysqli->prepare($sql)) {
$delete_stmt->bind_param('i',$this->id);
if (! $delete_stmt->execute()) {
return false;
}
}
}
public function getCategoryId() {return $this->categoryId;}
public function setCategoryId($id) {$this->categoryId = $id;}
public static function displaySubCategoryOptionList($id) {
$mysqli = dbConnect();
$sql = "select * from subcategories where categoryid = $id";
$result = $mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
echo '<option value="">Choose Sub Category</option>';
while($row = $result->fetch_assoc()) {
echo '<option value="' . $row['id']. '">'. $row['name'] .' </option>';
}
} else {
echo "<option>No categories added yet...</option>";
}
}
public static function displaySubCategoryEditList() {
$mysqli = dbConnect();
$sql = "select sc.name as subcategoryname,
c.name as categoryname,
c.id as categoryid,
sc.id as subcategoryid
from subcategories sc, categories c
where sc.categoryid = c.id";
$result = $mysqli->query($sql);
if ($result->num_rows > 0) {
// output data of each row
echo '<table class="table"><th>Category</th><th>Subcategory</th><th></th>';
while($row = $result->fetch_assoc()) {
echo '<form method="post">
<input type="text" name="subCategoryId" value="'.$row['subcategoryid'].'" hidden/>
<input type="text" name="categoryId" value="'.$row['categoryid'].'" hidden/>
<tr><td>
<input name="categoryName" class="form-control" type="text" disabled value="'.$row['categoryname'].'"> </input>
</td><td>
<input name="subCategoryName" class="form-control" type="text" value="'.$row['subcategoryname'].'"> </input>
</td><td>
<button type="submit" name="editSubCategory" class="btn btn-success" >Save</button>
<button type="submit" name="deleteSubCategory" class="btn btn-danger">Delete</button>
</td</tr>
</form>';
}
echo '</table>';
} else {
echo "No categories added yet...";
}
$mysqli->close();
}
}
?>