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
:
createBrand.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()); if($_POST) { $brandName = $_POST['brandName']; $brandStatus = $_POST['brandStatus']; $sql = "INSERT INTO brands (brand_name, brand_active, brand_status) VALUES ('$brandName', '$brandStatus', 1)"; if($connect->query($sql) === TRUE) { $valid['success'] = true; $valid['messages'] = "Successfully Added"; header('location:fetchBrand.php'); } else { $valid['success'] = false; $valid['messages'] = "Error while adding the members"; header('location:../add-brand.php'); } $connect->close(); echo json_encode($valid); } // /if $_POST