-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.php
132 lines (103 loc) · 4.1 KB
/
education.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php session_start();?>
<?php
include("includes/connection.php");
include("includes/functions.php");
?>
<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $_SESSION['title']; ?></title>
<link rel="stylesheet" href="css/style2.css" type="text/css" />
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div id="allContent">
<div id="popout">
<div id='popoutContents'>
<div class="popdetails"><h4>Project Full Details</h4></div>
<div id='close'>
<img src='images/closeicon.png' alt='close' title='close' />
</div>
<div id="pop">
</div>
</div>
</div>
<div class="wrapper">
<nav class="navbar navbar-expand-lg nav-tabs nav-fill navbar-light bg-light">
<div class="container">
<img src="images/logo.png" height="70" width="100" />
<span class="fs-4">Computer Science e-Project Archive</span>
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link" aria-current="page">Home</a></li>
<li class="nav-item"><a href="about_us.php" class="nav-link">About Us</a></li>
<li class="nav-item"><a href="#" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="#" class="nav-link">FAQs</a></li>
</ul>
</div>
</div>
</nav> <div class="b-example-divider"></div>
<div class="content">
<div class="leftNav">
<div class="con">
<a href="#"><span class="navitems" >Faculty of Education</span></a><br />
<a href="science.php"><span class="navitems" id="science"> Faculty of Science</span><br />
<a href="humanities.php"><span class="navitems" id="humanities"> Faculty of Humanities</span><br />
<a href="admin.php?add"><span class="navitems" id="admin"> Home </span></a><br />
<a href="home"><span class="navitems" id="home"> Log Out</span></a><br />
</div>
<div class="conLink">
</div>
</div>
<center>
<div class="rightcon">
<div class="top">
<fieldset><legend id="sitems"><Span class="dash"> <center></Span> </center>
</legend>
<div class="dash con">
<center>
<p><h4>List of Registered Depatments in Faculty of Education </h4><br /></p>
<table cellpadding="8" cellspacing="5" border="1" id="tbl_adminlist" width="80%">
<tr>
<th width="5%">S/N</th><th width="13%">Department</th>
</tr>
<?php
$qr = "SELECT * FROM departments WHERE SchoolName = 'Faculty of Education'";
$sql = mysql_query($qr);
Confirm_query($sql,"fail to get list of student", "");
while ($adminList = mysql_fetch_assoc($sql)){
$sn += 1;
?>
<tr>
<h6><td><?php echo $sn; ?></td> </h6>
<td align="center"><?php echo $adminList['DeptName'];?></td>
</tr>
<?php } ?>
</table>
</center>
</div>
</fieldset>
</div>
</div>
</center>
</div>
<div class="b-example-divider"></div>
<!-- Footer -->
<footer class=" text-center fixed-bottom" >
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright:
<a href="#!">Bn Hassan</a>
</div>
<!-- Copyright -->
</footer>
</div>
</div></div>
<script type="text/javascript" src="js/jquery.js" ></script>
<script type="text/javascript" src="js/js.js" ></script>
<script type="text/javascript" src="js/getProjects.js" ></script>
<script type="text/javascript" src="js/jquery.slimscroll.js"></script>
<script type="text/javascript" src="js/myjs.js"></script>
</body>
</html>