CON012_1.php 1.91 KB
<?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");
?>