Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
GARAGE
/
php_action
:
removeCategories.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once 'core.php'; //$valid['success'] = array('success' => false, 'messages' => array()); //$categoriesId = $_POST['categoriesId']; $categoriesId = $_GET['id']; if($categoriesId) { $sql = "UPDATE categories SET categories_status = 2 WHERE categories_id = {$categoriesId}"; if($connect->query($sql) === TRUE) { $valid['success'] = true; $valid['messages'] = "Successfully Removed"; header('location:../categories.php'); } else { $valid['success'] = false; $valid['messages'] = "Error while remove the brand"; } $connect->close(); echo json_encode($valid); } // /if $_POST