Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. function roepPhpFunctieAan() {
  5. var xmlHttp = null;
  6.  
  7. xmlHttp = new XMLHttpRequest();
  8. var params = "?intensiteit=100";
  9.  
  10. xmlHttp.open("GET", "http://localhost/controlled.php" + params, false);
  11. xmlHttp.onreadystatechange = function() {// Call a function when the state changes.
  12. if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
  13. alert(xmlHttp.responseText);
  14. }
  15. }
  16. xmlHttp.send();
  17. }
  18. </script>
  19. </head>
  20. <body>
  21.  
  22. <button onclick="roepPhpFunctieAan()">Zet aan</button>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement