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
:
fetchSelectedBrand.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once 'core.php'; $brandId = $_POST['brandId']; $sql = "SELECT brand_id, brand_name, brand_active, brand_status FROM brands WHERE brand_id = $brandId"; $result = $connect->query($sql); if($result->num_rows > 0) { $row = $result->fetch_array(); } // if num_rows $connect->close(); echo json_encode($row);