encryptData($phone); $sql = "DELETE FROM blacklist_driver WHERE phone = :phone"; $stmt = $con->prepare($sql); $stmt->execute([':phone' => $encPhone]); if ($stmt->rowCount() > 0) { jsonSuccess(null, "Driver removed from blacklist successfully."); } else { jsonError("No driver found in blacklist with this phone."); } } catch (PDOException $e) { jsonError("Error removing from blacklist: " . $e->getMessage()); }