Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <script type="text/javascript">
  2. var auto_refresh = setInterval(
  3. function () {
  4. $('#test').load('updates.php').fadeIn("slow");
  5. }, 10000); // refresh every 10000 milliseconds
  6. </script>
  7.  
  8. <div class="container" id="test">
  9. <?php include("updates.php");?>
  10. </div>
  11.  
  12. GET http://localhost:8888/updates.php 500 (Internal Server Error)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement