id; if (!$data) { http_response_code(400); } else { try { if (Outfit::ApplyOutfit($user->id, $id)) { $applyoutfit = "Outfit Applied"; } } catch (Exception $e) { $applyoutfit = $e->getMessage(); } header('Content-Type: application/json'); echo json_encode(array("alert" => $applyoutfit)); }