Send InlineKeyboard ?

To Send Inline Keyboard Use This Code ⬇️

<?php
$board = [
            [
                [
                    "text" => "key 1",
                    "url" => "https://google.com/"
                ],
                [
                    "text" => "key 2",
                    "callback_data" => "/start"
                ],
                [
                    "text" => "key 3",
                    "callback_data" => "x"
                ]
            ]
        ]; 
        bot_sendInlineKeyboard($chat_id,$message_id,$board,"hi","","Markdown");
triangle-exclamation

Last updated