-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
34 lines (33 loc) · 1.08 KB
/
header.php
File metadata and controls
34 lines (33 loc) · 1.08 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
<?php session_start(); ?>
<!doctype html>
<html>
<head>
<title>Home</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="logo">Logo</h1>
<nav>
<ul>
<?php
if (isset($_SESSION['user_id'])){
echo "<li><a href='index.php'>Home</a></li>
<li><a href='#'>Profile</a></li>
<li><a href='forum.php'>Forum</a></li>
<li><a href='#'>Downloads</a></li>
<li><a href='#'>Contact Us</a></li>";
}
else {
echo "<li><a href='index.php'>Home</a></li>
<li><a href='#'>Downloads</a></li>
<li><a href='forum.php'>Forum</a></li>
<li><a href='#'>Contact us</a></li>";
}
?>
</ul>
</nav>
<div class="clear"></div>
</header>
<div id="container">