--- title: messages_editInlineBotMessage --- ## Method: messages\_editInlineBotMessage [Back to methods index](index.md) ### Parameters: | Name | Type | Required | |----------|:-------------:|---------:| |no\_webpage|[Bool](../types/Bool.md) | Optional| |id|[InputBotInlineMessageID](../types/InputBotInlineMessageID.md) | Required| |message|[string](../types/string.md) | Optional| |reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional| |entities|Array of [MessageEntity](../types/MessageEntity.md) | Optional| ### Return type: [Bool](../types/Bool.md) ### Example: ``` $MadelineProto = new \danog\MadelineProto\API(); if (isset($token)) { $this->bot_login($token); } if (isset($number)) { $sentCode = $MadelineProto->phone_login($number); echo 'Enter the code you received: '; $code = ''; for ($x = 0; $x < $sentCode['type']['length']; $x++) { $code .= fgetc(STDIN); } $MadelineProto->complete_phone_login($code); } $Bool = $MadelineProto->messages_editInlineBotMessage(['no_webpage' => Bool, 'id' => InputBotInlineMessageID, 'message' => string, 'reply_markup' => ReplyMarkup, 'entities' => [MessageEntity], ]); ```