Guest User

Untitled

a guest
Dec 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <?php
  5. int cont = 0;
  6. ?>
  7.  
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" type="text/javascript"></script>
  9. <script>
  10.  
  11. req()
  12. {
  13. $.ajax({url: "func.php"}, success: function(data) {
  14. document.getElementById("p1").innerHTML = data;
  15. });
  16. setInterval(req(), 2000);
  17. };
  18.  
  19. $('document').ready(function(){
  20. setInterval(req(), 2000);
  21. });
  22.  
  23. </script>
  24.  
  25. <p id="p1">0</p>
  26. </body>
  27.  
  28. <?php
  29. cont++;
  30. echo cont;
  31. ?>
Add Comment
Please, Sign In to add comment