Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <div class="inviters" id="top_inviters_source">
  2. <div class="window">
  3. <ul id="inviters_source">
  4. </ul>
  5. <?php
  6. $getMods = $db->query("SELECT * FROM `users` WHERE `rank` >= '2' LIMIT 10");
  7. while($mod = $getMods->fetch_assoc())
  8. {
  9. $getPic = $db->query("SELECT * FROM `users_pictures` WHERE `user_id` = '".$mod['id']."' AND `profile_picture` = '1' LIMIT 1");
  10. if($getPic->num_rows >= 1)
  11. $pic = $getPic->fetch_assoc();
  12.  
  13. if($getPic->num_rows >= 1)
  14. $picture = $pic['unique_id'];
  15. else
  16. $picture = $_CONFIG['default_profile_picture'];
  17. ?>
  18. <li>
  19. <a href="{url}/<?php echo $mod['username']; ?>">
  20. <div style="background:url({picUrl}/<?php echo $picture; ?>.thumbnail.jpg);background-size:cover;background-position:center center;height:65px;width:65px;"></div>
  21. </a>
  22. </li>
  23. <?php } ?>
  24. <ul id="top_inviters_destination" class="hidden"></ul>
  25. </div>
  26. </div>
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement