Guest User

Untitled

a guest
Jun 4th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. if ($_SERVER["REQUEST_METHOD"] == "POST")
  3. {
  4.     echo $_POST['obj'];
  5. }
  6. ?>
  7. <!doctype html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8">
  11. <script type="text/javascript" src="js/jquery.js"></script>
  12. <script type="text/javascript">
  13. var response = "lalalala";
  14. function lol()
  15. {
  16.     $.ajax({   
  17.         url: '<? echo $_SERVER['PHP_SELF']; ?>',
  18.         type: 'POST',
  19.         data: { 'obj' : 'informazioni' },
  20.         dataType: "html",
  21.         success: function ( response )  
  22.         {
  23.             console.log(response)
  24.         },
  25.         error: function () {
  26.         alert("Chiamata fallita!!!");
  27.           }
  28.     });
  29. }
  30. </script>
  31. <title>Documento senza titolo</title>
  32. </head>
  33.  
  34. <body>
  35. <input type="button" onClick="lol();" value="LOL" />
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment