ok
Direktori : /home2/selectio/public_html/thecomponents.in/admin/public/ |
Current File : //home2/selectio/public_html/thecomponents.in/admin/public/confirm-delete-area.php |
<div id="content" class="container col-md-12"> <?php include_once('includes/custom-functions.php'); $fn = new custom_functions; if (isset($_POST['btnDelete'])) { if (ALLOW_MODIFICATION == 0 && !defined(ALLOW_MODIFICATION)) { echo '<label class="alert alert-danger">This operation is not allowed in demo panel!.</label>'; return false; } $ID = (isset($_GET['id'])) ? $db->escapeString($fn->xss_clean($_GET['id'])) : ""; // delete data from menu table $sql_query = "DELETE FROM area WHERE id =" . $ID; $db->sql($sql_query); $delete_result = $db->getResult(); if (!empty($delete_result)) { $delete_result = 0; } else { $delete_result = 1; } // if delete data success back to reservation page if ($delete_result == 1) { header("location: areas.php"); } } if (isset($_POST['btnNo'])) { header("location: areas.php"); } if (isset($_POST['btncancel'])) { header("location: areas.php"); } ?> <?php if ($permissions['locations']['delete'] == 1) { ?> <h1>Confirm Action</h1> <hr /> <form method="post"> <p>Are you sure want to delete this Area?</p> <input type="submit" class="btn btn-primary" value="Delete" name="btnDelete" /> <input type="submit" class="btn btn-danger" value="Cancel" name="btnNo" /> </form> <div class="separator"> </div> <?php } else { ?> <div class="alert alert-danger topmargin-sm">You have no permission to delete area.</div> <form method="post"> <input type="submit" class="btn btn-danger" value="Back" name="btncancel" /> </form> <?php } ?> </div> <?php $db->disconnect(); ?>