The problem is i want to send messages through telegram bot and also i able to download from it Examples :
when i send messages : /INPUT
telegram will respond : Please INPUT your Pictures here
$bot_url =
(//api.telegram.org/bot879669473:AAFlNB0v9Wk7jsCmXzHAAAXESltfswrJGCUa4aTs/");
$chat_id = '656219807436';
$get_file = (//api.telegram.org/bot879669473:AAFlNB0v9Wk7jsCmXzHXESltfrJGCUa4aTs/
getFile? file_id=AgADBQAD5KgxGw6e2VbuoSeUL3qcoeuKAjMABAEAAwIAA20AA4LRAAWEWQAIWBA");
$file_id = 'AgADBQAD5KgxGw6e2VbuoSeUL3qcoeuKAjMABAEAAwIAA20ASWEQASAA4LRAAIWBA';
$url = $bot_url . "sendPhoto?chat_id=" . $chat_id ;
$message_id = $message['message_id'];
$chat_id = $message['chat']['id'];
$from_id = $message['from']['id'];
$username = $message['chat']['username'];
$photo = $message['photo']['file_id'];
if (isset($message['text'])) {
$text = $message['text'];
telegram_send_message($chat_id,$photo);
}