You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
798 B
31 lines
798 B
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<title>学生管理系统</title>
|
|
<style type="text/css">
|
|
.ids {
|
|
background-color: #6FF;
|
|
font-size:24px;
|
|
}
|
|
.bs {
|
|
background-color: #FFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body bgcolor="D9DFAA">
|
|
<table bgcolor="D9DFAA" width="200" height="303">
|
|
<tr>
|
|
<td height="87" align="center"><input type="button" class="ids" onclick=parent.frmmain.location="studentManage.php" value="学生"></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="87" align="center"><input type="button" class="ids" onclick=parent.frmmain.location="scoreManage.php" value="成绩"></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="95" align="center"><input type="button" class="ids" onclick=parent.frmmain.location="courseManage.php" value="课程"></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|