-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathabc.php
More file actions
71 lines (59 loc) · 2.84 KB
/
abc.php
File metadata and controls
71 lines (59 loc) · 2.84 KB
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
<?php
/*
***************************************************
*** Online Examination System ***
***-------------------------------------------- ***
*** Title: Student Welcome
***************************************************
*/
/*error_reporting(0);
session_start();
if(!isset($_SESSION['stdname'])){
$_GLOBALS['message']="Session Timeout.Click here to <a href=\"index.php\">Re-LogIn</a>";
}
else if(isset($_REQUEST['logou*/
<html>
<head>
<title>OES-DashBoard</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="oes.css"/>
</head>
<body>
/* <?php
if($_GLOBALS['message']) {
echo "<div class=\"message\">".$_GLOBALS['message']."</div>";
}
?>*/
<div id="container">
<div class="header">
<h3 class="headtext"> Online Examination System </h3>
</div>
<div class="menubar">
<form name="stdwelcome" action="studentwelcome.php" method="post">
<ul id="menu">
<?php if(isset($_SESSION['stdname'])){ ?>
<li><input type="submit" value="LogOut" name="logout" class="subbtn" title="Log Out"/></li>
<?php } ?>
</ul>
</form>
</div>
<div class="stdpage">
/* <?php if(isset($_SESSION['stdname'])){ ?>*/
<img height="600" width="100%" alt="back" src="images/trans.png" class="btmimg" />
<div class="topimg">
<map name="oesnav">
<area shape="circle" coords="150,120,70" href="viewresult.php" alt="View Results" title="Click to View Results" />
<area shape="circle" coords="450,120,70" href="studenttest.php" alt="Take a New Test" title="Take a New Test" />
<area shape="circle" coords="300,250,60" href="editprofile.php?edit=edit" alt="Edit Your Profile" title="Click this to Edit Your Profile." />
<area shape="circle" coords="150,375,70" href="practicetest.php" alt="Practice Test" title="Click to take a Practice Test" />
<area shape="circle" coords="450,375,70" href="resumetest.php" alt="Resume Test" title="Click this to Resume Your Pending Tests." />
</map>
</div>
/* <?php }?>*/
</div>
<div id="footer">
<p style="font-size:70%;color:#ffffff;"> Developed By-<b>Sneha Bhattacharya & Puja Singh</b></p>
</div>
</div>
</body>
</html>