Advertisement
Guest User

Untitled

a guest
May 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <table>
  2. <thead>
  3. <td>ID</td>
  4. <td>Name</td>
  5. <td>UUID</td>
  6. <td>Status</td>
  7. </thead>
  8. <?php
  9. while($row = mysql_fetch_assoc($query)) {
  10. ?>
  11. <tr>
  12. <td>
  13. <a class="users" href="user.php?id=<?php echo $row['id']; ?>"><?php echo $row['id']; ?></a>
  14. </td>
  15. <td>
  16. <a class="user"><?php echo $row['id']; ?></a>
  17. </td>
  18. <td>
  19. <a class="users"><?php echo $row['servername']; ?></a>
  20. </td>
  21. <td>
  22. <a class="users"><?php echo $row['online']; ?></a>
  23. </td>
  24. </tr>
  25. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement