Advertisement
GigilinE

Untitled

Mar 11th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. apiRequest("sendMessage", array(
  2. 'chat_id' => $chat_id,
  3. "text" => "Seleziona lingua\nChose language",
  4. 'reply_markup' => array(
  5. 'inline_keyboard' => array(
  6. array(
  7. array(
  8. 'text' => 'Italiano',
  9. 'callback_data' => 'italian'
  10. ),
  11. array(
  12. 'text' => 'English',
  13. 'callback_data' => 'english'
  14. )
  15. )
  16. )
  17. )
  18. )
  19. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement