forked from kavinotravi/DBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.php
73 lines (63 loc) · 2.71 KB
/
student.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
69
70
71
72
73
<?php
session_start();
require("connect.php");
$tag="";
if (isset($_GET['tag']))
$tag=$_GET['tag'];
?>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Welcome to University Management system</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jquery-1.11.0.js"></script>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-theme.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-theme.min.css"/>
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="css/home.css" />
</head>
<body>
<div class="logout_btn">
<a href="index.php" class="btn btn-primary btn-large">Logout <i class="icon-white icon-check"></i></a>
</div>
<div class="img_home_pos">
<a href="student.php"><img src="images/img21.jpg" height="90" alt="IIT KANPUR" /></a><span class="header_pos">IIT KANPUR</span>
</div><br>
<div >
<?php
include './student_drop_down.php';
?>
</div>
<div style="position:absolute; left:200px; top:120px;">
<div class="container_show_post">
<?php
if($tag=="home" or $tag=="")
include("home.php");
elseif($tag=="view_profile")
include("student_profile.php");
elseif($tag=="change_password")
include("student_change_password.php");
elseif($tag=="curr_sem")
include("student_curr_sem.php");
elseif($tag=="add_drop")
include("student_add_drop.php");
elseif($tag=="next_sem")
include("student_next_sem.php");
elseif($tag=="leave_request")
include("student_leave_request.php");
elseif($tag=="apply_minor")
include("student_apply_minor.php");
elseif($tag=="not_allowed")
include("not_allowed.php");
elseif($tag=="transcript")
include("student_acad_details.php");
?>
</div>
</div>
</div>
<div class="bottom_pos">
<a href="AboutManagement.php" style="text-decoration: none;">About management</a>
</div>
</body>
</html>