Advertisement
Guest User

Staff Logs

a guest
Jul 13th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <div class="tab-pane" id="staff_logs">
  2. <?php
  3. $q = Config::$g_con->prepare('SELECT * FROM `staff_logs` ORDER BY `ID` DESC Limit 10');
  4. $q->execute();
  5. echo "<ul class = 'timelines timelines-inverse'>";
  6. while($row = $q->fetch(PDO::FETCH_OBJ)) {
  7. echo
  8. "
  9. <li>"; ?>
  10. <img src="<?php echo Config::$_PAGE_URL ?>resources/avatars/<?php echo Config::getData('users', 'CChar', $row->player) ?>.png" class="img-circle"
  11. style="border: 2px solid #e2e2e2;">
  12. <?php
  13. echo "
  14. <div class='timelines-item'
  15. style='margin-top: -41px; border: 1px solid #e2e2e2; background: #fbfbfb; color: #797979;'>
  16. <span class='time'>
  17. <i class='fa fa-clock-o'></i> ";
  18. echo Config::timeAgo($row->Time);
  19. echo "</span>
  20. <div class='timelines-body'>
  21. {$row->Text}
  22. </div>
  23. </div>
  24. </li><br>";
  25. }
  26. ?>
  27. </ul></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement