Send Image / Photo ?

To Send Image Use This Code ⬇️

<?php
$img = "https://t.me/CBGNews/32";
bot_sendPhoto($chat_id,$message_id,$img,"Image","","Markdown");

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

Send Image / Photo With Keyboard ?

To Send Image With Keyboard Use This Code ⬇️

<?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 ?

To Send Image With Inline Keyboard Use This Code ⬇️

Last updated