Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created January 15, 2018 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wichaksono/fa2ecb976c3a9a5abf9be532ec80b1e0 to your computer and use it in GitHub Desktop.
Save wichaksono/fa2ecb976c3a9a5abf9be532ec80b1e0 to your computer and use it in GitHub Desktop.
<?php
session_start();
if ( isset($_SESSION['user_login']) && $_SESSION['user_login'] != '' ) {
$halaman = $_SESSION['user_login'];
header('location:on-'. $halaman);
exit();
} else {
header('location:login.php');
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment