Всем привет, подскажите Как скрыть ссылку, при нажатии на кнопку.
error_reporting(E_ALL);
include('vendor/autoload.php');
$botToken = "mi_token";
$website = "https://api.telegram.org/bot".$botToken;
$content = file_get_contents("php://input");
$update = json_decode($content, TRUE);
$message = $update["message"];
$chatId = $message["chat"]["id"];
$text = $message["text"];
if ($text == '/start') {
$welcomemessage = 'Сайт';
}
$inline_button1 = array("text"=>"Перейти на сайт","url"=>"https://saytik123123123.ru/");
$inline_keyboard = [[$inline_button1]];
$keyboard=array("inline_keyboard"=>$inline_keyboard);
$replyMarkup = json_encode($keyboard);
file_get_contents($website."/sendmessage?chat_id=".$chatId."&text=".$welcomemessage.'&reply_markup=' . $replyMarkup );