-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteam.list.php
More file actions
46 lines (41 loc) · 788 Bytes
/
team.list.php
File metadata and controls
46 lines (41 loc) · 788 Bytes
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
<?php
namespace Pmeth\RBI;
include('bootstrap.php');
$teammapper = new TeamROMMapper($myrom);
$teamlist = $teammapper->getAllTeams();
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
body {
font-family: 'Courier New';
font-weight: bold;
background-color: black;
color: white;
}
header, menu {
margin: 0;
padding: 0;
}
header a, menu a {
color: yellow;
text-decoration: none;
}
header a:hover, menu a:hover {
text-decoration: underline;
}
</style>
<title></title>
</head>
<body>
<?php
include('partials/header.partial.php');
include('partials/menu.partial.php');
?>
<?php
echo $teamlist->toHTMLTable();
?>
</body>
</html>