-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeam.php
More file actions
96 lines (71 loc) · 2.84 KB
/
Team.php
File metadata and controls
96 lines (71 loc) · 2.84 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<link rel="stylesheet" href="css/tournament.css">
<?php include "functions.php"; ?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Holtwood+One+SC' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script|Herr+Von+Muellerhoff' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Istok+Web|Roboto+Condensed:700' rel='stylesheet' type='text/css'>
<title>NCAA Tournament Bracket</title>
</head>
<body>
<header class="hero">
<h2 id="headline">Team Stats</h2>
</header>
<section id="bracket">
<table id="stats">
<tr>
<th>Team Name</th>
<th>Coach Name</th>
<th>City</th>
<th>State</th>
<th>Season</th>
<th>FGM</th>
<th>FGA</th>
<th>FTM</th>
<th>FTA</th>
<th>AST</th>
<th>TOver</th>
<th>STL</th>
<th>BLK</th>
<th>REB</th>
</tr>
<tr>
<?php
// $name = $_GET('name');
$id = $_GET['id'];
$season = $_GET['season'];
getTeamStats($season, $id, $db);
?>
</tr>
</table>
</section>
<section id="bracket">
<div class="container">
<table id="stats">
<tr>
<th>Roster</th>
<th>Player Name</th>
<th>Season</th>
<th>FGM</th>
<th>FGA</th>
<th>FTM</th>
<th>FTA</th>
<th>AST</th>
<th>TOver</th>
<th>STL</th>
<th>BLK</th>
<th>REB</th>
<th>FOUL</th>
</tr>
<tr>
<?php
getPlayerStats($season, $id, $db);
?>
</tr>
</table>
</div>
</section>