Delete Message ?

Delete Inline Keyboard ??

Step 1.) Save Message Id Of Inline Keyboard While You Sending Inline Keyboard By Bot.

<?php
//Your Inline Keyboard Code Here
user_setProperty($chat_id,"msgID","$message_id");

Step 2.) When Your Work Is Done Delete Inline Keyboard By Getting Message Id Which You Save At Step 1, And After Getting Message Id Add 1 Value To It.

<?php
$id1 = user_getProperty($chat_id,"msgID");
$id = $id1+1;
bot_deleteMessage($chat_id,$id);
//Now Your Code

Step 3.) Done..

Last updated