prepare("INSERT INTO channels (telegram_id) VALUES (:telegram_id)"); $stmt->execute([':telegram_id' => $telegram_id]); session_start(); $_SESSION['flash_message'] = "Channel '{$telegram_id}' added successfully!"; header("Location: index.php"); exit; } catch (PDOException $e) { if ($e->errorInfo[1] == 1062) { // Duplicate entry $error = "Error: Channel '{$telegram_id}' already exists."; } else { $error = "Database error: " . $e->getMessage(); } } } } require_once __DIR__ . '/layout_header.php'; ?>

Add New Channel

Provide the public channel username (e.g., @durov) or full URL.
Cancel