-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathvideos.php
More file actions
21 lines (18 loc) · 689 Bytes
/
videos.php
File metadata and controls
21 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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">
<h3> Welcome Faculty : <a href="welcomefaculty.php" ><span style="color:#FF0004"> <?php echo $fname; ?></span></a> </h3>
<a href="addvideos.php"><button href="" type="submit" class="btn btn-primary">Add Videos</button></a>
<a href="managevideos.php"><button href="" type="submit" class="btn btn-primary">Manage Videos</button></a>
</div>
</div>
<?php include('allfoot.php'); ?>