-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage_student.php
71 lines (70 loc) · 2.64 KB
/
manage_student.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
<?php
include 'db_connect.php';
if(isset($_GET['id'])){
$qry = $conn->query("SELECT * FROM student where id= ".$_GET['id']);
foreach($qry->fetch_array() as $k => $val){
$$k=$val;
}
}
?>
<div class="container-fluid">
<form action="" id="manage-student">
<input type="hidden" name="id" value="<?php echo isset($id) ? $id : '' ?>">
<div id="msg" class="form-group"></div>
<div class="form-group">
<label for="" class="control-label">Id No.</label>
<input type="text" class="form-control" name="id_no" value="<?php echo isset($id_no) ? $id_no :'' ?>" required>
</div>
<div class="form-group">
<label for="" class="control-label">Name</label>
<input type="text" class="form-control" name="name" value="<?php echo isset($name) ? $name :'' ?>" required>
</div>
<div class="form-group">
<label for="" class="control-label">Contact</label>
<input type="text" class="form-control" name="contact" value="<?php echo isset($contact) ? $contact :'' ?>" required>
</div>
<div class="form-group">
<label for="" class="control-label">Email</label>
<input type="email" class="form-control" name="email" value="<?php echo isset($email) ? $email :'' ?>" required>
</div>
<div class="form-group">
<label for="" class="control-label">Address</label>
<textarea name="address" id="" cols="30" rows="3" class="form-control" required=""><?php echo isset($address) ? $address :'' ?></textarea>
</div>
</form>
</div>
<script>
$('#manage-student').on('reset',function(){
$('#msg').html('')
$('input:hidden').val('')
})
$('#manage-student').submit(function(e){
e.preventDefault()
start_load()
$('#msg').html('')
$.ajax({
url:'ajax.php?action=save_student',
data: new FormData($(this)[0]),
cache: false,
contentType: false,
processData: false,
method: 'POST',
type: 'POST',
success:function(resp){
if(resp==1){
alert_toast("Data successfully saved.",'success')
setTimeout(function(){
location.reload()
},1000)
}else if(resp == 2){
$('#msg').html('<div class="alert alert-danger mx-2">ID # already exist.</div>')
end_load()
}
}
})
})
$('.select2').select2({
placeholder:"Please Select here",
width:'100%'
})
</script>