Advertisement
Guest User

News

a guest
Dec 1st, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <div class="col-text">
  2. <div class="full-rslides">
  3. <ul class="rslides transparent-btns transparent-btns1">
  4. <?php
  5. $result = CMS::$MySql->Query("SELECT * FROM articles ORDER BY id DESC LIMIT 5");
  6. $i = 0;
  7.  
  8. while ($Row = $result->fetch_assoc()) {
  9. $i++;
  10.  
  11. echo '<li>
  12. <a href="/community/'.$Row['id'].'"><img height="350" width="960" src="'.$Row['image'].'" alt=""></a>
  13. <p class="caption"><i class="fa fa-newspaper-o"></i> '.$Row['title'].'<span class="muted small"> - Posted on '.date('F, jS Y', $row['date']).'</span></p>
  14. </li>
  15. <ul class="transparent-btns_tabs transparent-btns'.$Row['id'].'_tabs"><a href="#" class="transparent-btns'.$Row['id'].'_s'.$Row['id'].'"></a></ul>';
  16. }
  17. ?>
  18. </div>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement