-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_stud.php
43 lines (36 loc) · 872 Bytes
/
view_stud.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
<?php
include"database.php";
session_start();
if(!isset($_SESSION["AID"]))
{
echo"<script>window.open('index.php?mes=Access not granted','_self');</script>";
}
?>
<!DOCTYPE html>
<html>
<head>
<title>ASP - Admin </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<?php include"navbar.php";?><br>
<div class="sidebar">
<?php include"sidebar.php";?>
</div>
<div class="content">
<h3 class="text">Welcome <?php echo $_SESSION["ANAME"]; ?></h3><br><hr><br>
<h3 > View Information</h3><br>
</div>
<div class="footer">
<footer><p>Copyright © 2020 </p></footer>
</div>
<script src="js/jquery.js"></script>
<script>
$(document).ready(function(){
$(".error").fadeTo(1000, 100).slideUp(1000, function(){
$(".error").slideUp(1000);
});
});
</script>
</body>
</html>