-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.php
54 lines (38 loc) · 844 Bytes
/
stats.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
<?php
include "common/header.php";
?>
<div class="main">
<noscript>This site just doesn't work, period, without JavaScript</noscript>
<h1>Statistics</h1>
<!-- IF LOGGED IN -->
<!-- Content here -->
<!-- IF LOGGED OUT -->
<p>Algebra</p>
<table border="1">
<tr>
<th>Lesson 1</th>
<th>Lesson 2</th>
<th>Lesson 3</th>
<th>Lesson 4</th>
<th>Lesson 5</th>
</tr>
<tr>
<td>1st - JoeBob</td>
<td>1st - Joe</td>
<td>1st - JoeB</td>
<td>1st - Bob</td>
<td>1st - JB</td>
</tr>
<tr>
<td>2nd - Jimmy</td>
<td>2nd - Jonathan</td>
<td>2nd - Jake</td>
<td>2nd - JoeBob</td>
<td>2nd - Jackrabbit</td>
</tr>
</table>
</div>
<?php
include_once "common/sidebar.php";
include_once "common/footer.php";
?>