Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(empty($_GET['Page'])){
- include "_Page/Beranda/Beranda.php";
- }else{
- $Page=$_GET['Page'];
- if($Page=="Akses"){
- include "_Page/Akses/Akses.php";
- }else{
- if($Page=="Pasien"){
- include "_Page/Pasien/Pasien.php";
- }else{
- if($Page=="Pengaturan"){
- include "_Page/Pengaturan/Pengaturan.php";
- }else{
- include "_Page/Beranda/Beranda.php";
- }
- }
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement