Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. if(strpos($attr["step"],"create") !== false)
  2. {
  3. exec("python a.py -a $text", $output);
  4. $message = $output[1];
  5. $keyboard[] = array(0 => "create");
  6. $resp = array("keyboard" => $keyboard,"resize_keyboard" => true, "one_time_keyboard" => true);
  7. $reply = json_encode($resp);
  8. $url = $website."/sendmessagesage?chat_id=".$chat_id."&text=".$message."&reply_markup=".$reply;
  9. file_get_contents($url);
  10. $message = "Thanks!";
  11. $url = $website."/sendmessagesage?chat_id=".$chat_id."&parse_mode=Markdown&text=".urlencode($message)."&reply_markup=".$reply;
  12. file_get_contents($url);
  13. return;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement