KST007_0.php
1.57 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: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="">