-
Notifications
You must be signed in to change notification settings - Fork 234
/
edit_categorie.php
66 lines (61 loc) · 1.97 KB
/
edit_categorie.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
<?php
$page_title = 'Edit categorie';
require_once('includes/load.php');
// Checkin What level user has permission to view this page
page_require_level(1);
?>
<?php
//Display all catgories.
$categorie = find_by_id('categories',(int)$_GET['id']);
if(!$categorie){
$session->msg("d","Missing categorie id.");
redirect('categorie.php');
}
?>
<?php
if(isset($_POST['edit_cat'])){
$req_field = array('categorie-name');
validate_fields($req_field);
$cat_name = remove_junk($db->escape($_POST['categorie-name']));
if(empty($errors)){
$sql = "UPDATE categories SET name='{$cat_name}'";
$sql .= " WHERE id='{$categorie['id']}'";
$result = $db->query($sql);
if($result && $db->affected_rows() === 1) {
$session->msg("s", "Successfully updated Categorie");
redirect('categorie.php',false);
} else {
$session->msg("d", "Sorry! Failed to Update");
redirect('categorie.php',false);
}
} else {
$session->msg("d", $errors);
redirect('categorie.php',false);
}
}
?>
<?php include_once('layouts/header.php'); ?>
<div class="row">
<div class="col-md-12">
<?php echo display_msg($msg); ?>
</div>
<div class="col-md-5">
<div class="panel panel-default">
<div class="panel-heading">
<strong>
<span class="glyphicon glyphicon-th"></span>
<span>Editing <?php echo remove_junk(ucfirst($categorie['name']));?></span>
</strong>
</div>
<div class="panel-body">
<form method="post" action="edit_categorie.php?id=<?php echo (int)$categorie['id'];?>">
<div class="form-group">
<input type="text" class="form-control" name="categorie-name" value="<?php echo remove_junk(ucfirst($categorie['name']));?>">
</div>
<button type="submit" name="edit_cat" class="btn btn-primary">Update categorie</button>
</form>
</div>
</div>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>