Advertisement
dhiforester

Page Title Pengaturan

Dec 18th, 2023
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | Source Code | 0 0
  1. <?php
  2.     if(empty($_GET['Page'])){
  3.         echo '<div class="pagetitle">';
  4.         echo '  <h1><i class="bi bi-grid"></i> Dashboard</h1>';
  5.         echo '</div>';
  6.     }else{
  7.         $Page=$_GET['Page'];
  8.         if($Page=="Akses"){
  9.             echo '<div class="pagetitle">';
  10.             echo '  <h1><i class="bi bi-key"></i> Akses</h1>';
  11.             echo '</div>';
  12.         }else{
  13.             if($Page=="Pasien"){
  14.                 echo '<div class="pagetitle">';
  15.                 echo '  <h1><i class="bi bi-person"></i> Pasien</h1>';
  16.                 echo '</div>';
  17.             }else{
  18.                 if($Page=="Pengaturan"){
  19.                     echo '<div class="pagetitle">';
  20.                     echo '  <h1><i class="bi bi-gear"></i> Pengaturan</h1>';
  21.                     echo '</div>';
  22.                 }
  23.             }
  24.         }
  25.     }
  26.    
  27. ?>
  28.  
Tags: simrs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement