Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2. require_once 'connection/connection.php';
  3. $query = mysqli_query($conn,"SELECT * FROM (SELECT * FROM `craftmaster` ORDER BY cid DESC LIMIT 0 , 3) t ORDER BY cid ASC;");
  4. ?>
  5. <?php
  6. while($row = mysqli_fetch_array($query))
  7. {?>
  8. <div class="col m4">
  9. <div class="card">
  10. <div class="card-image small">
  11. <a href="view_craft?id=<?php echo $row['cid']; ?>">
  12. <img src="user/img/craftimage/<?php echo $row['c_img']?>" class="responsive-img" style="height: 200px; width: :200px;">
  13. <h3 class="grid-element-title"><?php echo $row['ctitle']?></h3>
  14. </a>
  15. </div>
  16. </div>
  17. </div>
  18. <?php }?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement