-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.php
56 lines (50 loc) · 981 Bytes
/
main.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
if(isset($_GET["module"])){
$module = $_GET["module"];
switch($module) {
case "about" :
include('module/about.php');
break;
case "donate" :
include('module/donate.php');
break;
case "login" :
include('module/login.php');
break;
case "donatur" :
include('module/donatur.php');
break;
case "tambah" :
include('module/tambah.php');
break;
case "tambah-proses" :
include('module/tambah-proses.php');
break;
case "hapus" :
include('module/hapus.php');
break;
case "edit" :
include('module/edit.php');
break;
case "edit-proses" :
include('module/edit-proses.php');
break;
case "signin" :
include('module/signin.php');
break;
case "admin" :
include('module/admin.php');
break;
case "member" :
include('module/member.php');
break;
case "content-mem" :
include('module/Donasi.php');
break;
default:
include('module/home.php');
}
}else{
include('module/home.php');
}
?>