From 7110d83c5efb87fc081fe68bb67be40bc44dd2e9 Mon Sep 17 00:00:00 2001 From: Daniele Callari Date: Mon, 28 Sep 2020 09:42:02 +0200 Subject: [PATCH] Aggiungi 'InlineKeyboard' --- InlineKeyboard.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 InlineKeyboard.md diff --git a/InlineKeyboard.md b/InlineKeyboard.md new file mode 100644 index 0000000..dda7134 --- /dev/null +++ b/InlineKeyboard.md @@ -0,0 +1,13 @@ +``` +$bot = new TelegramBot(Config::TelegramBotToken); +$bot->debug = true; + +$bot->SendMessage +( + '362870431', + "Testo di prova", + TelegramBot::ReplyMarkup (KeyboardMarkupType::InlineKeyboard,[ + ['text' => 'Gestisci su WiNet','url' => 'https://daxtech.net'] + ]) +); +``` \ No newline at end of file