-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
31 lines (31 loc) · 1.29 KB
/
Copy pathheader.php
File metadata and controls
31 lines (31 loc) · 1.29 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
<?php
session_start();
include 'functions/functions.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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.php">Index</a></li>
<li><a href="calculator.php">Lesson 15: Calculator</a></li>
<li><a href="schedulemsg.php">Lesson 16: Scheduled Messages</a></li>
<li><a href="loops-arrays.php">Lesson 17-21: Loops and Arrays in PHP</a></li>
<li><a href="user-defined-functions.php">Lesson 22: User Defined Functions</a></li>
<li><a href="superglobals-sessions.php">Lesson 25- : Superglobals Sessions Cookies</a></li>
<li><a href="select-from-db.php">Lesson 36-37 Connect to Database</a></li>
<li><a href="user-signup.php">Lesson 38- Insert into Database/ Sign-up</a></li>
<li><a href="hashing.php">Lesson 43: Hashing/De-hashing data</a></li>
<li><a href="arrays.php">Lesson 45-50: Arrays</a></li>
<li><a href="upload-files.php">Lesson 51: Upload Files</a></li>
</ul>
</nav>
</header>