Send Keyboard ?

To Send Keyboard Use This Code ⬇️

<?php
/*
$board=[
    ['7', '8', '9'],
    ['4', '5', '6'],
    ['1', '2', '3'],
         ['0']
];
bot_sendKeyboard($chat_id,$message_id,$board,"hi","","Markdown");
*/
// Don't Use This Code Its Old
bot_sendKeyboard("","","button1,button2\nbutton3","hi");
bot_sendKeyboard();
bot_sendKeyboard("","","button1,button2\nbutton3","hi","","Markdown"):
bot_sendKeyboard("","","button1,button2\nbutton3","hi","reply","Markdown")
bot_sendKeyboard($chat_id,"","button1,button2\nbutton3","hi","","Markdown"): //For Send Certain User

After "hi" You Are Seeings That "" Is Empty It Is Reply Block If You Want To Reply To User Then "true" In "" Empty Block.

V2 Method ⬇️

Last updated