Guest User

primer

a guest
Feb 15th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //bg.php datoteka
  2. <?php
  3. echo time();
  4. ?>
  5.  
  6. //index.html datoteka
  7. <h1 id="cas"></h1>
  8. <script>
  9. var xhttp = new XMLHttpRequest();
  10. xhttp.onload = function() {
  11. cas.innerHTML = this.response;
  12. };
  13.  
  14. setInterval(function(){
  15. xhttp.open("GET", "bg.php", false);
  16. xhttp.send();
  17. },1000);
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment