KST007_0.php 1.57 KB
<?php 
//*****************************************************************************
//* 
//* プログラム名:メニュー作成
//* プログラムID:KST007_0.php
//* 機能        :新規メニューの作成
//* 作成者      :K.Yoshimura
//* 
//*****************************************************************************

header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
$strDBinc="include/dbcon.inc";

include($strDBinc);

include("inc/input_chk.inc");
include("inc/KST007_0.inc");

	//**** メニュー ****//
//	include("include/menu.inc");

	//**** DB接続 ****//
	$strDBinc="include/dbcon.inc";
	include($strDBinc);

$strSQL="";
$objRecSet="null";

if ($sinki_edit_flg == "edit") {
	$strSQL = "SELECT group_seq,group_name FROM torihiki_group_tbl " .
			"ORDER BY disp_rank ";

	$objRecSet = pg_exec($strSQL);
	if($objRecSet==false){
		echo("SQL実行に失敗しました(SELECT)");
		exit;
	}

	$objData = pg_fetch_object($objRecSet, 0);
	$strGroup_Name=$objData->group_name;

}


?>
<BR>
<span class="Chufont"></span><span class="Normalfont">は入力必須項目です</span>
<table width="402" border="0" cellspacing="1" cellpadding="1" class="mainColor">
	<tr><td>
	<table cellspacing="1" cellpadding="1" width="400" border="0">
		<tr bgcolor="#ffffff">
			<td class="toneDown"><span class="Normalfont">グループ名</span><span class="Chufont"></span></td>
			<td><input type="text" maxLength="23" size="50" value="<?php echo $strGroup_Name?>" name="strGroup_Name"></td>
		</tr>
	</table>
	</td></tr>
</table>

<br>
<input type="hidden" name="type" value="">