Advertisement
dhiforester

Modal Pengaturan

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