Send Image / Photo ?
<?php
$img = "https://t.me/CBGNews/32";
bot_sendPhoto($chat_id,$message_id,$img,"Image","","Markdown");Send Image / Photo With Keyboard ?
<?php
$img = "https://t.me/CBGNews/32";
$board=[
['7', '8', '9'],
['4', '5', '6'],
['1', '2', '3'],
['0']
];
bot_sendPhotoWithKeyboard($chat_id,$message_id,$img,$board,"Image","","Markdown");Send Image / Photo With Inline Keyboard ?
Last updated