Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- $modul = (isset($_GET['m']))?$_GET['m']:"awal";
- $title = "Admin Tema Aplikasi | Web Programming";
- switch($modul) {
- case 'awal': default:
- $title = "Beranda $title";
- include('awal.php');
- break;
- case 'kedua':
- $title = "Kedua $title";
- include('kedua.php');
- break;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement