Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
11 lines
138 B
PHP
11 lines
138 B
PHP
<?php
|
|
switch ($_GET['menu']) {
|
|
case 'kalender':
|
|
include "kalender.php";
|
|
break;
|
|
|
|
default:
|
|
include "daftar-seminar.php";
|
|
break;
|
|
}
|
|
?>
|