Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
11 lines
208 B
PHP
11 lines
208 B
PHP
<?php
|
|
switch ($_GET['menu']) {
|
|
case 'my-profile':
|
|
include "my-profile.php";
|
|
break;
|
|
|
|
default:
|
|
echo "<script>location.href='".MHS_PAGE."dashboard.php?page=user&menu=my-profile'</script>";
|
|
break;
|
|
}
|
|
?>
|