Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Sil
  2. -> css
  3. -> js
  4. -> clients
  5. -> index.php
  6. -> response.php
  7. index.php
  8.  
  9. http://localhost/Sil/clients/
  10. http://localhost/Sil/clients/all/
  11. http://localhost/Sil/clients/stackoverflow/2
  12. http://localhost/Sil/clients/stackoverflow/2/technology/5
  13.  
  14. $.ajax({
  15. url : 'response.php?type=add',
  16. });
  17.  
  18. http://localhost/Sil/clients/all/response.php?type=add
  19.  
  20. $.ajax({
  21. url : 'http://localhost/Sil/response.php?type=add',
  22. });
  23.  
  24. $.ajax({
  25. url : '/Sil/clients/response.php?type=add',
  26. });
  27.  
  28. <base href="http://localhost/Sil/clients/" />
  29. <script>
  30. $.ajax({
  31. url : 'response.php?type=add',
  32. });
  33. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement