Guest User

Untitled

a guest
Mar 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. $post = json_decode($_POST);
  3. $action = $post['action'];
  4. switch ($action) {
  5. case 'action1':
  6. break;
  7. case 'action2':
  8. break;
  9. default:
  10. break;
  11. }
  12.  
  13. echo json_encode(
  14. array(
  15. "result" => "success",
  16. "message" => "ok",
  17. )
  18. );
Add Comment
Please, Sign In to add comment