-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathempsidebar.php
More file actions
19 lines (17 loc) · 755 Bytes
/
Copy pathempsidebar.php
File metadata and controls
19 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
session_start();
$logindt = date("Y-m-d");
if($_SESSION["emplogin"] == "SET")
{
?>
<div class="header_02"><a href="employeehome.php"><strong>Employee Home</strong></a></div>
<div class="header_02"><strong><a href="viewproject.php">View Project</a></strong></div>
<div class="header_02"><strong><a href="team.php">Team</a></strong></div>
<div class="header_02"><strong><a href="task.php">Task</a></strong></div>
<div class="header_02"><strong><a href="uchat.php">Chat</a></strong></div>
<div class="header_02"><strong><a href="inbox.php">Messages</a></strong></div>
<div class="header_02"><strong><a href="viewsalary.php">Salary report</a></strong></div>
<div class="header_02"><strong><a href="logout.php">Logout</a></strong></div>
<?php
}
?>