-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameDetails.php
63 lines (49 loc) · 1.26 KB
/
GameDetails.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
include 'Controls/init.php';
$gameID = $_GET['gid'];
$result = GetGame_ID($gameID); // Get the details of the game
while ($rows = mysql_fetch_array($result))
{
$gameType = $rows['GameTypeFull'];
$gameTime = $rows['GameTime'];
$opponent = $rows['Opponent'];
$homeAway = $rows['HomeAway'];
$gameDate = $rows['GameDate'];
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="StyleSheets/GameDetails.css" />
<script type="text/javascript">
$(function() {
$('.nyroModal').nyroModal();
});
function closeWin(){
}
</script>
</head>
<body style="position:relative">
<table>
<thead><tr><td colspan="2"><h2 class="center"><?php echo $gameType.' ('.HomeAway($homeAway).')'; ?></h2></td></tr></thead>
<tr>
<td class="left">Game Time:</td>
<td><?php echo $gameTime.' '.$gameDate; ?></td>
</tr>
<tr>
<td class="left">Opponent:</td>
<td><?php echo $opponent; ?></td>
</tr>
<tr>
<td class="left">Notes:</td>
<td><?php echo ''; ?></td>
</tr>
<tr>
<td colspan="2">
<a target="_blank" href="https://www.google.com/calendar/embed?src=h5096ummauq621nso94014ik2g%40group.calendar.google.com&ctz=America/New_York"
class="gCalButton">
</a>
</td>
</tr>
</table>
</body>
</html>