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.
22 lines
599 B
22 lines
599 B
<?php
|
|
header('Content-Type: text/html; charset=gb2312');
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<title>学生管理系统</title>
|
|
</head>
|
|
<body bgcolor="#999999">
|
|
<table bgcolor="#999999" width="200" height="85">
|
|
<tr>
|
|
<td align="center"><input type="button" value="学生" onclick=parent.frmmain.location="studentManage.php"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center"><input type="button" value="成绩" onclick=parent.frmmain.location="scoreManage.php"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center"><input type="button" value="课程" onclick=parent.frmmain.location="courseManage.php"></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|