-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage_establishment.php
48 lines (46 loc) · 1.35 KB
/
manage_establishment.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
<?php include 'db_connect.php' ?>
<?php
if(isset($_GET['id'])){
$qry = $conn->query("SELECT * FROM establishments where id= ".$_GET['id']);
foreach($qry->fetch_array() as $k => $val){
$$k=$val;
}
}
?>
<div class="container-fluid">
<form action="" id="manage-establishment">
<input type="hidden" name="id" value="<?php echo isset($id) ? $id :'' ?>">
<div class="form-group">
<label for="" class="control-label">Department</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">Department Head</label>
<textarea name="address" id="address" class="form-control" cols="30" rows="2" required><?php echo isset($address) ? $address :'' ?></textarea>
</div>
</form>
</div>
<script>
$('#manage-establishment').submit(function(e){
e.preventDefault()
start_load()
$('#msg').html('')
$.ajax({
url:'ajax.php?action=save_establishment',
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()
},1500)
}
}
})
})
</script>