Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $select = "select * from app_persons ORDER BY `title` ASC";
  3. $query = mysql_query($select);
  4. while($row = mysql_fetch_array($query))
  5. {
  6. ?>
  7. <div class="post style-1 bottom-2">
  8.  
  9. <h3 class="title bottom-1" style="width:600px;"><?php echo $row['title']; ?></h3><!-- Title Post -->
  10.  
  11. <div class="image-post">
  12. <a href="single_post.html"><img src="/project/admin/upload/<?php echo $row['image']; ?>" style="width:600px;height:300px;"></a>
  13. </div><!-- End slider image-post -->
  14.  
  15.  
  16.  
  17. <div class="post-content">
  18. <p style="width:650px;">
  19. <?php echo $row['description']; ?>
  20. </p>
  21. <a href="single_post.html" class="button small color">Read More</a>
  22. </div><!-- End post-content -->
  23.  
  24. <div class="post-meta bottom-1">
  25. <div class="meta"><i class="icon-time"></i> <?php echo $row['last_updated']; ?> </div><!-- Date -->
  26. </div><!-- End post-meta -->
  27. </div>
  28. <?php
  29. }
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement