$products]); exit; } // Get product specifications if (isset($_GET['product_id'])) { $productId = (int)$_GET['product_id']; // Get product base information $productSql = "SELECT id, ProductName, unit FROM products WHERE id = $productId"; $productResult = mysqli_query($conn, $productSql); $product = mysqli_fetch_assoc($productResult); if (!$product) { echo json_encode(['error' => 'Product not found']); exit; } // Get specifications for the product $specSql = "SELECT id, spec_name, spec_value, price, min_order_quantity, spec_code FROM product_specifications WHERE product_id = $productId ORDER BY sort_order, spec_name"; $specResult = mysqli_query($conn, $specSql); $specifications = []; while ($row = mysqli_fetch_assoc($specResult)) { $specifications[] = $row; } echo json_encode([ 'product' => $product, 'specifications' => $specifications ]); exit; } // Original get product info functionality $id = isset($_GET['id']) ? (int)$_GET['id'] : 0; // Modified to include specification information $sql = "SELECT p.unit FROM products p WHERE p.id = $id"; $result = mysqli_query($conn, $sql); if ($row = mysqli_fetch_assoc($result)) { // Get specifications $specSql = "SELECT id, spec_name, spec_value, price, min_order_quantity, spec_code FROM product_specifications WHERE product_id = $id ORDER BY sort_order, spec_name"; $specResult = mysqli_query($conn, $specSql); $specifications = []; while ($spec = mysqli_fetch_assoc($specResult)) { $specifications[] = $spec; } echo json_encode([ 'unit' => $row['unit'], 'specifications' => $specifications ]); } else { echo json_encode(['error' => 'Product not found']); } ?>