-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.php
22 lines (21 loc) · 928 Bytes
/
event.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php require ( 'include.php' ); $season = ""; $event = $argument; $matchesPlayed = 0; ?>
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
<html>
<head>
<title><?= $title ?> | <?= $event ?></title>
<link type='text/css' rel='stylesheet' href='style.css'>
<script type='text/javascript' src='https://www.gstatic.com/charts/loader.js'></script>
<script type='text/javascript'><?php require ( 'include.js.php' ); ?> </script>
</head>
<body>
<h1><a href='index.php'><?= $title ?></a></h1>
<h2><?= $subtitle ?><br>Event Rankings | <?= $season . " | " . $event ?></h2>
<h3>Rankings</h3>
<div class='rankings'><div id='rankingsTable'></div></div>
<h3>ELO Change</h3>
<div class='eloChange'><div id='eloChangeChart'></div></div>
<h3>Match Log</h3>
<div class='matchLog'><div id='matchLogTable'></div></div>
</table>
</body>
</html>