-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathwelcomefaculty.php
32 lines (26 loc) · 1.37 KB
/
welcomefaculty.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
<?php
session_start();
if ( $_SESSION[ "fidx" ] == "" || $_SESSION[ "fidx" ] == NULL ) {
header( 'Location:facultylogin' );
}
$userid = $_SESSION[ "fidx" ];
$fname = $_SESSION[ "fname" ];
?>
<?php include('fhead.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<!--Welcome page for faculty-->
<h3> Welcome Faculty : <a href="welcomefaculty.php" ><span style="color:#FF0004"> <?php echo $fname; ?></span></h3>
</a>
<a href="mydetailsfaculty.php?myfid=<?php echo $userid ?>"><button href="" type="submit" class="btn btn-primary">My Details</button></a>
<a href="viewstudentdetails.php"><button href="" type="submit" class="btn btn-primary">Student Details</button></a>
<a href="assessment.php"><button href="" type="submit" class="btn btn-primary">Assessment</button></a>
<a href="examDetails.php"><button href="" type="submit" class="btn btn-primary">Make Result</button></a>
<a href="resultdetails.php"><button href="" type="submit" class="btn btn-primary">Edit Result</button></a>
<a href="qureydetails.php"> <button href="" type="submit" class="btn btn-primary">Query</button>
<a href="videos.php"> <button href="" type="submit" class="btn btn-primary">Videos</button>
<a href="logoutfaculty"><button href="" type="submit" class="btn btn-danger">Logout</button></a>
</div>
</div>
<?php include('allfoot.php'); ?>