-
Notifications
You must be signed in to change notification settings - Fork 0
/
performance.php
69 lines (48 loc) · 955 Bytes
/
performance.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
64
65
66
67
68
<?php
session_start();
include('top.php');
?>
<body>
<div id="wrapper">
<div id="topmenu">
<?php
include('top_menu.php');?>
</div>
<div id="header">
<?php include('header.php'); ?>
</div>
<div id="content">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td align="left" valign="top" width="200" >
<div id="left1">
<div class="top_m color2">
Evaluation
</div>
<br>
<?php include('performance/left.php'); ?>
</div>
</td>
<td align="left" valign="top">
<div id="right1">
<?php
if(!$_GET["type"])
{
include('performance/month_att.php');
}
else
{
if($_GET["type"]=='att')
{
include('performance/month_att_student.php');
}
}
?>
</div>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>