Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. $query = "SELECT uid, rpname, wallet FROM darkrp_player WHERE LENGTH(uid) = 10 ORDER by wallet DESC LIMIT 10";
  2. if ($result = mysqli_query($link, $query)) {
  3. ?>
  4. <div align='center'>
  5. <table class="table table-striped table-dark">
  6. <tr>
  7. <th>Name</th>
  8. <th>Wallet</th>
  9. <?php while ($row = mysqli_fetch_assoc($result)) {
  10. ?>
  11. </tr>
  12. <tr>
  13. <td><?php echo $row['rpname']; ?></td>
  14. <td><?php echo $row['wallet']; ?></td>
  15.  
  16. <?php
  17. }
  18. ?>
  19.  
  20. </tr>
  21. </table>
  22. </div>
  23.  
  24. $query = "SELECT uid, rpname, wallet FROM darkrp_player WHERE LENGTH(uid) = 10 ORDER by wallet DESC LIMIT 10";
  25. $dob = "SELECT name, created, last_online FROM darkrp_player ORDER by created DESC LIMIT 10";
  26. if ($result = mysqli_query($link, $query, )) {
  27. ?>
  28. <div align='center'>
  29. <table class="table table-striped table-dark">
  30. <tr>
  31. <th>Name</th>
  32. <th>Wallet</th>
  33. <?php while ($row = mysqli_fetch_assoc($result)) {
  34. ?>
  35. </tr>
  36. <tr>
  37. <td><?php echo $row['rpname']; ?></td>
  38. <td><?php echo $row['wallet']; ?></td>
  39.  
  40. <?php
  41. }
  42. ?>
  43.  
  44. </tr>
  45. </table>
  46. </div>
  47.  
  48. <div align='center'>
  49. <table class="table table-striped table-dark">
  50. <tr>
  51. <th>Name</th>
  52. <th>First Joined</th>
  53. <th>Last Connected</th>
  54.  
  55. <?php while ($row = mysqli_fetch_assoc($result)) {
  56. ?>
  57. </tr>
  58. <tr>
  59. <td><?php echo $row['name']; ?></td>
  60. <td><?php echo $row['created']; ?></td>
  61. <td><?php echo $row['last_online']; ?></td>
  62. <?php
  63. }
  64. ?>
  65. </tr>
  66. </table>
  67. </div>
  68.  
  69. <?php
  70. mysqli_free_result($result);
  71. }
  72. mysqli_close($link);
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement