prepare($sql); $stmt->execute([ ':driverID' => $driverID, ':title' => $title, ':body' => $body, ':isPin' => $isPin ]); if ($stmt->rowCount() > 0) { jsonSuccess(null, "Notification data saved successfully"); } else { jsonError("Failed to save notification data"); } ?>