Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. require_once 'includes/dbase.inc';
  3. include 'includes/functions.inc';
  4. include "includes/head.inc";
  5. // anders wordt de insert herdaan
  6. $_SESSION['gameDone'] = false;
  7. ?>
  8. <div class="main__content">
  9. <div class="scoresTable">
  10. <table class="scoresTable__header">
  11. <thead>
  12. <tr>
  13. <th>Date</th>
  14. <th>Status</th>
  15. <th>Remaining shots</th>
  16. <th>Difficulty</th>
  17. </tr>
  18. </thead>
  19. </table>
  20. <div class=" scores">
  21. <table class="scores__table">
  22. <tbody>
  23. <?php
  24. echo printScores($_SESSION['usr_id']);
  25. ?>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. </div>
  31. <?php
  32. include "includes/foot.inc";
  33. ?>