Skip to content

Instantly share code, notes, and snippets.

@edisetiawan
Created December 8, 2015 15:33
Show Gist options
  • Save edisetiawan/8907cab87966c8110c9d to your computer and use it in GitHub Desktop.
Save edisetiawan/8907cab87966c8110c9d to your computer and use it in GitHub Desktop.
<?php
session_start();
if(!empty($_SESSION['username']))
{
?>
<h1>Halaman Admin</h1>
<a href="logout.php">Logout</a>
<?php
}else{
header('location: login.php');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment