kanri_edit.php
2.03 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
header("Content-type: text/html; charset=EUC-JP");
//セッション開始
require_once("./include/session_start.inc");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="stylesheet" type="text/css" href="basefont.css">
<TITLE>E-グルPro 超管理画面</TITLE>
</HEAD>
<body>
<form name="frm" method="post" action="kanri_reg.php">
■管理情報
<br>
<table border="0">
<tr>
<td>グループID:</td>
<td><input type="text" name="group_id"></td>
</tr>
<tr>
<td>グループPW:</td>
<td><input type="text" name="group_pass"></td>
</tr>
<tr>
<td>DB名:</td>
<td><input type="text" name="db_name"></td>
</tr>
<tr>
<td>フォルダ名:</td>
<td><input type="text" name="folder_name"></td>
</tr>
<tr>
<td>グループ名:</td>
<td><input type="text" name="group_name"></td>
</tr>
<tr>
<td>モード:</td>
<td><input type="text" name="mode_flg">(0:有料版)</td>
</tr>
<tr>
<td>携帯利用可否:</td>
<td><input type="text" name="mobile_flg">(1:利用しない)</td>
</tr>
<tr>
<td>利用人数:</td>
<td><input type="text" name="max_count"></td>
</tr>
<tr>
<td>最大容量:</td>
<td><input type="text" name="max_size"> MB</td>
</tr>
</table>
■契約情報
<br>
<table border="0">
<tr>
<td>契約日</td>
<td><input type="text" name="keiyaku_date" value="<?php echo $keiyaku_date; ?>"></td>
</tr>
<tr>
<td>契約プラン</td>
<td><input type="text" name="keiyaku_plan" value="<?php echo $keiyaku_plan; ?>">(0:フル、1:個別)</td>
</tr>
<tr>
<td>支払いプラン</td>
<td><input type="text" name="pay_plan" value="<?php echo $pay_plan; ?>">(0:半年払い、1:月払い)</td>
</tr>
<tr>
<td>更新回数</td>
<td><input type="text" name="keizoku_nm" value="<?php echo $keizoku_nm; ?>"></td>
</tr>
<tr>
<td>次回支払日</td>
<td><input type="text" name="pay_date" value="<?php echo $pay_date; ?>"></td>
</tr>
</table>
<input type="submit" value="登録実行!!">
</form>
</body>
</HTML>