-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·35 lines (35 loc) · 1.46 KB
/
header.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
<?php
require("connect.php");
session_start();
$guest='';
if(isset($_SESSION['username'])){
$username=$_SESSION['username'];
}
else{
header('Location: index.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="headerStyle.css?ver=<?php echo rand(111,999);?>">
<link rel="stylesheet" type="text/css" href="profileStyle.css?ver=<?php echo rand(111,999);?>">
<link rel="stylesheet" type="text/css" href="homeStyle.css?ver=<?php echo rand(111,999);?>">
<link rel="stylesheet" type="text/css" href="postStyle.css?ver=<?php echo rand(111,999);?>">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
</head>
<body>
<div class="header">
<nav>
<ul class="nav">
<li><a href="home.php"> JIIT NETWORK</a></li>
<li><a href="home.php"><i class="far fa-comment-alt"></i> Discussion Forum</a></li>
<li><a href=<?php echo "profile.php?username=".$username;?>><i class="fas fa-user-circle"></i> <?php echo $username; ?></a></li>
<li><a href="logout.php"><i class="fas fa-power-off"></i> Logout</a></li>
</ul>
</nav>
</div>