Advertisement
michaelyuen

Untitled

May 17th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.     </head>
  5.     <body>
  6.         <div id="post-wrapper">
  7.             <?php include "post.php"; ?>
  8.         </div>
  9.     </body>
  10. </html>
  11.  
  12. <script>
  13.     $(document).ready(function (){
  14.         setInterval(function(){
  15.             $('#post-wrapper).load("post.php");
  16.         },2000);
  17.     });
  18. </script>
  19.  
  20. #############
  21. post.php
  22.  
  23. <?php foreach ($rows as $row): ?>
  24.             <div class="post" id="<?= $row['postid']; ?>">
  25.                 <div class="content">
  26.                     <div class="content-image"><?= $row['postimage']; ?></div>
  27.                     <div class="content-text"><?= $row['content']; ?></div>
  28.                 </div>
  29.                 <div class="likes">
  30.                     <span></span>
  31.                 </div>
  32.             </div>
  33. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement