-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy patheveryone.php
100 lines (90 loc) · 3.73 KB
/
everyone.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
session_start();
require("conection/connect.php");
$tag="";
if (isset($_GET['tag']))
$tag=$_GET['tag'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Welcome to College 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="everyone.php"><img src="images/img21.jpg" height="90" alt="Rajasthan technical university" /></a><span class="header_pos">Rajasthan Technical University</span>
</div><br>
<div class="dropdownmenu_container">
<?php
include './drop_down_menu.php';
?>
</div>
<div class="container_middle">
<div class="container_show_post">
<?php
if($tag=="home" or $tag=="")
include("home.php");
elseif($tag=="student_entry")
include("Students_Entry.php");
elseif($tag=="teachers_entry")
include("Teachers_Entry.php");
elseif($tag=="score_entry")
include("Score_Entry.php");
elseif($tag=="subject_entry")
include("Subject_Entry.php");
elseif($tag=="faculties_entry")
include("Faculties_Entry.php");
elseif($tag=="susers_entry")
include("Users_Entry.php");
elseif($tag=="view_students")
include("View_Students.php");
elseif($tag=="view_teachers")
include("View_Teachers.php");
elseif($tag=="view_subjects")
include("View_Subjects.php");
elseif($tag=="view_scores")
include("View_Scores.php");
elseif($tag=="view_users")
include("View_Users.php");
elseif($tag=="view_faculties")
include("View_Faculties.php");
elseif($tag=="location_entry")
include("Location_Entry.php");
elseif($tag=="artical_entry")
include("Artical_Entry.php");
elseif($tag=="test_score")
include("test_Scores.php");
elseif($tag=="view_location")
include("View_location.php");
elseif($tag="view_artical")
include("View_Articaly.php");
elseif($tag="attendance_entry")
include("attendance_entry.php");
/*$tag= $_REQUEST['tag'];
/*if(empty($tag)){
include ("Students_Entry.php");
}
else{
include $tag;
}*/
?>
</div>
</div>
</div>
<div class="bottom_pos">
<a href="AboutManagement.php" style="text-decoration: none;">About management</a>
</div>
</body>
</html>