-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparent.php
342 lines (245 loc) · 11.1 KB
/
parent.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<?php session_start();
include_once 'database.php';
if (!isset($_SESSION['user'])||$_SESSION['role']!='Teacher') {
# code...
header('Location:./logout.php');
}
?>
<?php
$pid =$fname =$lname = $classroom = $dob = $gender = $address = $parent=" ";
if(isset($_GET['update'])){
$update = "SELECT * FROM parent WHERE pid='".$_GET['update']."'";
$result = $conn->query($update);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$pid = $row['pid'];
$nic = $row['nic'];
$fname = $row['fname'];
$lname = $row['lname'];
$contact = $row['contact'];
$occupation = $row['job'];
// $dob = date_format(new DateTime($row['bday']),'m/d/Y');
//echo $dob;
$gender = $row['gender'];
$address = $row['address'];
$email=$row['email'];
}
}
}
?>
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> Dashboard</title><link rel="icon" href="../img/favicon2.png">
<!-- Tell the browser to be responsive to screen width -->
<?php include_once 'header.php'; ?>
</head>
<body class="nav-md">
<div class="container body">
<div class="main_container">
<div class="col-md-3 left_col">
<?php include_once 'sidebar.php'; ?>
</div>
<?php include_once 'nav-menu.php'; ?>
<!-- page content -->
<div class="right_col" role="main">
<div class="row">
<div class="col-md-3">
<div class="x_panel">
<div class="x_title">
<h2><?php echo (isset($_GET['update']))?"Update parent":"Add parent"; ?></h2>
<ul class="nav navbar-right panel_toolbox">
<li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a>
</li>
<li><a class="close-link"><i class="fa fa-close"></i></a>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content">
<?php if (!isset($_GET['update'])) {
if (isset($_POST['submit'])) {
$nic = $_POST['nic'];
$fname = $_POST['fname'];
$lname = $_POST['lname'];
// $dob = date_format(new DateTime($_POST['dob']),'Y-m-d');
//echo $dob;
$gender = $_POST['gender'];
$address = $_POST['address'];
$email = $_POST['email'];
$job = $_POST['job'];
$contact = $_POST['contact'];
try {
$sql = "INSERT INTO parent (fname,lname,address,gender,job,contact,nic,email) VALUES ( '".$fname."', '".$lname."','".$address."','".$gender."','".$job."','".$contact."','".$nic."','".$email."')";
if ($conn->query($sql) === TRUE) {
echo "<script type='text/javascript'> var x = document.getElementById('truemsg');
x.style.display='block';</script>";
} else {
}
} catch (Exception $e) {
}
# code...
}
?>
<?php }elseif (isset($_GET['update'])) { ?>
<div class="alert alert-success alert-dismissible" style="display: none;" id="truemsg">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h4><i class="icon fa fa-check"></i> Success!</h4>
Update Student Successfully
</div>
<?php
if (isset($_POST['submit'])) {
$nic = $_POST['nic'];
$fname = $_POST['fname'];
$lname = $_POST['lname'];
// $dob = date_format(new DateTime($_POST['dob']),'Y-m-d');
//echo $dob;
$gender = $_POST['gender'];
$address = $_POST['address'];
$email = $_POST['email'];
$job = $_POST['job'];
$contact = $_POST['contact'];
try {
$sql = "UPDATE parent SET fname='".$fname."',lname='".$lname."',address='".$address."',gender='".$gender."',job='".$job."',contact='".$contact."',email='".$email."',nic='".$nic."' WHERE pid =".$pid;
// $sql = "INSERT INTO Parent (fname,lname,address,gender,job,contact,nic,email) VALUES ( '".$fname."', '".$lname."','".$address."','".$gender."','".$job."','".$contact."','".$nic."','".$email."')";
if ($conn->query($sql) === TRUE) {
echo "<script type='text/javascript'> var x = document.getElementById('truemsg');
x.style.display='block';</script>";
} else {
}
} catch (Exception $e) {
}
# code...
}
}
?>
<form role="form" method="POST" >
<div class="box-body">
<div class="form-group">
<label for="exampleInputPassword1">First Name</label>
<input name="fname" type="text" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$fname."'"; ?>>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Last Name</label>
<input name="lname" type="text" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$lname."'"; ?>>
</div>
<div class="form-group">
<label for="exampleInputPassword1">National Identity Card</label>
<input name="nic" type="text" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$nic."'"; ?>>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Gender</label>
<div class="radio ">
<label style="width: 100px"><input type="radio" name="gender" value="Male" <?php if($gender=='Male'){echo 'checked';} ?>> Male</label>
<label style="width: 100px"><input type="radio" name="gender" value="Female" <?php if($gender=='Female'){echo 'checked';} ?>> Female</label>
</div>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Email</label>
<input name="email" type="email" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$email."'"; ?>>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Address</label>
<textarea name="address" class="form-control" id="exampleFormControlTextarea1" rows="2"><?php echo $address; ?></textarea>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Contact</label>
<input name="contact" type="text" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$contact."'"; ?>>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Occupation</label>
<input name="job" type="text" class="form-control" id="exampleInputPassword1" required value=<?php echo "'".$occupation."'"; ?>>
</div>
</div>
<!-- /.box-body -->
<div class="box-footer">
<button type="submit" name="submit" value="submit" class="btn btn-primary">Update Parent</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-9">
<div class="x_panel">
<div class="x_title">
<h2>All <small>Students</small></h2>
<ul class="nav navbar-right panel_toolbox">
<li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="#">Settings 1</a>
<a class="dropdown-item" href="#">Settings 2</a>
</div>
</li>
<li><a class="close-link"><i class="fa fa-close"></i></a>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content">
<div class="row">
<div class="col-sm-12">
<div class="card-box table-responsive">
<p class="text-muted font-13 m-b-30">
School Management System
</p>
<table id="datatable-buttons" class="table table-striped table-bordered" style="width:100%">
<thead>
<tr>
<th>Parent ID</th>
<th>Full Name</th>
<th>NIC</th>
<th>Gender</th>
<th>Address</th>
<th>Contact</th>
<th>Occupation</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT * FROM parent";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$class = (isset($_GET['update']) && $_GET['update'] == $row["pid"])?'parent':'';
echo "<tr class='{$class}'><td> " . $row["pid"]. " </td><td> " . $row["fname"]." ". $row["lname"]. " </td><td> " . $row["nic"]. "</td><td>" . $row["gender"]. "</td><td>" . $row["address"]. "</td><td>" . $row["contact"]. "</td><td>" . $row["job"]. "</td><td><a href='parent.php?update=". $row["pid"]."'><small class='btn btn-sm btn-primary'>Update</small></a></td></tr>";
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.box -->
</div>
</div>
<!-- /page content -->
<!-- footer content -->
<footer>
<div class="pull-right">
Gentelella - Bootstrap Admin Template by <a href="https://colorlib.com">Colorlib</a>
</div>
<div class="clearfix"></div>
</footer>
<!-- /footer content -->
</div>
</div>
<?php include_once 'footer.php'; ?>
</body>
</html>