-
Notifications
You must be signed in to change notification settings - Fork 0
/
header1.php
38 lines (35 loc) · 930 Bytes
/
header1.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
36
37
38
<?php
include_once('link.php');
include_once('koneksi.php');
session_start();
$nama = $_SESSION['name'];
$fullname = $_SESSION['fullname'];
$birthday = $_SESSION['birthday'];
$major = $_SESSION['major'];
$nim = $_SESSION['nim'];
$hobby = $_SESSION['hobi'];
$city = $_SESSION['address'];
?>
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a href="homepage.php" class="navbar-brand">KELOMPOK 3</a>
</div>
<div class="dropdown navbar-right" id="right">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown"><?php print "$nama";?>
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="data.php">Biodata</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
</nav>
</html>