-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
28 lines (25 loc) · 1.1 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
<?php
$conn =mysqli_connect('localhost','root','','pro');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Course Page</title>
<link rel="stylesheet" href="MyStyle.css">
</head>
<body>
<div class="nav">
<ul>
<li <?php if(isset($main)){?>class="active" <?php }?>> <a href="Home.php">Personal Information</a> </li>
<li <?php if(isset($allc)){?>class="active" <?php }?>> <a href="ViewsCourses.php">Courses Information</a>
</li>
<li <?php if(isset($allex)){?>class="active" <?php }?>> <a href="ViewExperience.php">Experiences
Information</a> </li>
<li <?php if(isset($addc)){?>class="active" <?php }?>> <a href="addCourse.php">Add Course</a> </li>
<li <?php if(isset($addex)){?>class="active" <?php }?>> <a href="addExperience.php">Add Experience</a> </li>
<li class="logo"><img src="img/3.png" alt="logo"></li>
</ul>
</div>