Advertisement
dhiforester

Routing Page Pengaturan

Dec 18th, 2023
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | Source Code | 0 0
  1. <?php
  2.     if(empty($_GET['Page'])){
  3.         include "_Page/Beranda/Beranda.php";
  4.     }else{
  5.         $Page=$_GET['Page'];
  6.         if($Page=="Akses"){
  7.             include "_Page/Akses/Akses.php";
  8.         }else{
  9.             if($Page=="Pasien"){
  10.                 include "_Page/Pasien/Pasien.php";
  11.             }else{
  12.                 if($Page=="Pengaturan"){
  13.                     include "_Page/Pengaturan/Pengaturan.php";
  14.                 }else{
  15.                     include "_Page/Beranda/Beranda.php";
  16.                 }
  17.             }
  18.         }
  19.     }
  20. ?>
Tags: simrs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement