-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDecodeCom.php
More file actions
54 lines (35 loc) · 735 Bytes
/
Copy pathDecodeCom.php
File metadata and controls
54 lines (35 loc) · 735 Bytes
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
<html>
<body>
<?php
$command = $_POST["command"];
$version = $_POST["version"];
//echo $command;
//echo $version;
if($version == "fun"){
include 'FunNavBar.html';
}else{
include 'EasyNavBar.html';
}
if($command == "/resume"){
include 'Resume.html';
}elseif($command == "/workexp"){
include 'WorkExp.html';
}elseif($command == "/home"){
include 'index.html';
}elseif($command == "/relproj"){
include 'RelProj.html';
}elseif($command == "/play"){
include 'ExtraCur.html';
}elseif($command == "/eversion"){
include 'eVersion.html';
}elseif($command == "/contact"){
include 'Contact.html';
}elseif($command == "/orange"){
include 'orange.html';
}else{
include 'InvalidCom.html';
}
exit();
?>
</body>
</html>