-
Notifications
You must be signed in to change notification settings - Fork 1
/
operation.php
72 lines (72 loc) · 2.27 KB
/
operation.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
session_start();
$action = $_GET['action']? $_GET['action']:'';
?>
<html>
<head>
<meta charset="UTF-8" content="text/html">
<script type="text/javascript" src=""></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/reg.css">
</head>
<body>
<div align="center">
<table>
<tr>
<td width="665px" height="164px" style="background-image: url(images/ball.jpg);" > </td>
</tr>
</table>
</div>
<?php
switch ($action) {
case 'reg': //register
include_once "reg.php";
break;
case 's_music': //see the music system
include_once "s_music.php";
break;
case 'mod_vip': //modify info
include_once "mod_vip.php";
break;
case 'intro': //video intro
include_once "intro.php";
break;
case 'v_intro': // vocie intro
include_once "v_intro.php";
break;
case 'call';
include_once "call.php";
break;
case 'trans':
include_once "trans.php";
break;
case 'found_pwd':
include_once "found_pwd.php";
break;
case 'search':
include_once "search.php";
break;
case 'see':
include_once "see.php";
?>
<!-- <iframe src="see.php?id=--><?// $_GET['id'] ?><!--" width="665px" height="530px" scrolling="no" frameborder="0" align="middle"></iframe>-->
<?php
break;
case 'listen':
include_once "listen.php";
break;
case 'give':
include_once "give.php";
break;
case 'dotlisten':
?>
<iframe src="dotlisten.php?id=<? $_GET['id'] ?>&name=<? $_GET['name'] ?>" width="665px" height="530px"
scrolling="no" frameborder="0" align="middle"></iframe>
<?php
break;
default:
break;
}
?>
</body>
</html>