CON012_1.php
1.91 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
<?php
//*****************************************************************************
//*
//* プログラム名:資料フォルダ画面
//* プログラムID:CON012_1
//* 機能 :資料フォルダ面を表示する
//* 作成者 :石田 英治
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include("include/input_chk.inc");
include("inc/CON012_1.inc");
include("inc/header.inc");
//メニュー
include("menu_opacity.php");
?>
<form name="e_gru">
<br>
<?php if ($PHP_BIT[0]==1){ ?>
<?php
if ($sinki_edit_flg=="sinki") {
$strSiryoCode="";
$strSiryoName="";
}else{
if ($sinki_edit_flg=="edit") {
$strSiryoArray=split("/",$siryo);
$strSiryoCode=$strSiryoArray[0];
$strSiryoName=$strSiryoArray[1];
}
}
?>
<span class="Chufont">*</span><span class="Normalfont">は入力必須項目です</span>
<table width="402" border="0" cellspacing="1" cellpadding="1" bgcolor="#9999ff">
<tr><td>
<table cellspacing="1" cellpadding="1" width="400" border="0">
<tr bgcolor="#ffffff">
<td bgcolor="#ccccff"><span class="Normalfont">資料フォルダ名</span><span class="Chufont">*</span></td>
<td><input type="text" maxLength="23" size="50" value="<?php echo $strSiryoName?>" name="siryo_name"></td>
</tr>
</table>
</td></tr>
</table>
<table width="402" border="0" cellspacing="0" cellpadding="0">
<tr>
<TD height="40" width="402" align="center"><INPUT type="button" onclick="return chk();" value=" 設 定 " name="set"> <INPUT type="button" onclick="return back();" value=" 戻 る " name="modoru"></TD>
</tr>
</table>
<br>
<hr width="100%">
<input type="hidden" name="siryo_cd" value="<?php echo $strSiryoCode?>">
<?php }else{ ?>
<a href="TOP000.php"><span class="Normalfont">マスタ変更権限がありません</span></a>
<?php } ?>
</form>
<?php
//コピーライト
include("include/copyright.inc");
?>