Guest User

Untitled

a guest
Jul 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1.     <?php if (!is_null($comments)) : ?>
  2.  
  3.       <p>There are currently no comments in this book. Be the first!</p>
  4.  
  5.     <?php else : ?>
  6.  
  7.       <?php foreach ($comments as $key => $comment) : ?>
  8.  
  9.         <?php if ($comment) : ?>
  10.  
  11.           <table class="table table-striped table-bordered">
  12.  
  13.             <tr><td><i class="icon-user"></i> <?php echo $comment['username']; ?> &nbsp; <i class="faint"><?php echo $comment['comment_date']; ?></i></td></tr>
  14.  
  15.             <tr><td><?php echo $comment['comment_text']; ?></td></tr>
  16.  
  17.           </table>
  18.  
  19.         <?php endif ?>
  20.  
  21.       <?php endforeach ?>
  22.  
  23.       <?php echo $pagination; ?>
  24.  
  25.     <?php endif ?>
Add Comment
Please, Sign In to add comment