Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $.ajax({
  2. url: "../AjaxController.php",
  3. type: "post",
  4. async: false,
  5. data : {
  6. api: "ExcursionsApi",
  7. func: "ExcursionsSearch",
  8. action: <?php echo '"' . $_SERVER['REQUEST_URI'] . '"' ?>,
  9. phpsessid: <?php echo '"' . $_COOKIE['phpsessid'] . '"'; ?>,
  10. token: "test",
  11. excursionId : 2
  12. }
  13.  
  14. }).done(function(resultJson) {
  15.  
  16. returnJson = JSON.parse(resultJson);
  17. alert(resultJson);
  18.  
  19.  
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement