Advertisement
dhiforester

index.php

Mar 29th, 2021
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <?php
  4.         session_start();
  5.             if (isset($_SESSION['hak_akses']) || !empty($_SESSION['hak_akses'])){
  6.             //Head
  7.             include "_Partial/head.php";
  8.             //Mobile
  9.             include "_Partial/mobile.php";
  10.             //body
  11.             include "_Partial/body.php";
  12.         }else{
  13.             header ("location:login.php");
  14.         }
  15.     ?>
  16. </html>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement