Unsupported PHP app for analysing and displaying stats for Team Fortress 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

classcomtable.php 784B

123456789101112131415161718192021222324252627282930313233343536
  1. <?PHP
  2. function showClassCompTable($classes) {
  3. echo '<table class="classcomp">';
  4. echo '<tr><th rowspan="2">Killer</th><th colspan="9">Victim</th></tr>';
  5. echo '<tr>';
  6. foreach ($classes as $killer => $data) {
  7. echo '<th>';
  8. echo '<a href="', URL_BASE, 'class.php?class=', $killer, '">';
  9. echo '<img src="', sprintf(URL_CLASS, 'blue', $killer), '" alt="', $killer, '">';
  10. echo '</a></th>';
  11. }
  12. echo '</tr>';
  13. foreach ($classes as $killer => $data) {
  14. echo '<tr>';
  15. echo '<th>';
  16. echo '<a href="', URL_BASE, 'class.php?class=', $killer, '">';
  17. echo '<img src="', sprintf(URL_CLASS, 'red', $killer), '" alt="', $killer, '">';
  18. echo '</a></th>';
  19. foreach ($data as $victim => $count) {
  20. echo '<td>', $count, '</td>';
  21. }
  22. echo '</tr>';
  23. }
  24. echo '</table>';
  25. }
  26. ?>