MST1140.php
2.31 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
89
90
91
92
93
94
95
<?PHP
//*****************************************************************************
//*
//* プログラム名:め〜るNiポン!V2
//* プログラムID:MST1140.php
//* 機能 :テスト配信
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include('./include/smarty.conf');
include("./include/jcode.phps");
include("./include/session_start.inc");
include("./include/SessionChk.inc");
//********** ヘッダー処理 **********//
include("./include/headr_data.inc");
//***************************
//* 初期処理
//***************************
include("./include/dbcon.inc");
//表示項目名を取得
//$strSQL = "SELECT disp_id, disp_name FROM mst_disp ORDER BY disp_id";
//$objRec = pg_exec($strSQL);
//if($objRec==false){
// echo("SQL実行に失敗しました(SELECT)");
// exit;
//}
//for($intI = 0; $intI < pg_numrows($objRec) ; $intI++) {
// $objData = pg_fetch_object($objRec, $intI);
// $intDisp_id[$intI] = $objData->disp_id;
// $strDisp_Name[$intI] = JcodeConvert($objData->disp_name, 1, 1);
//}
//選択ユーザー
$Send_List = "";
//表示情報取得
if ($_POST["Send_User"]!=""){
$User_List = split ("," , $_POST["Send_User"]);
for($intI = 0; $intI < count($User_List)-1; $intI++){
$strSQL = "SELECT name_kj_sei, name_kj_mei FROM syain_tbl WHERE syain_cd = ".$User_List[$intI]." ORDER BY syain_cd";
$objRec = pg_exec($strSQL);
if($objRec==false){
echo("SQL実行に失敗しました(SELECT)");
exit;
}
$objData = pg_fetch_object($objRec, 0);
$Send_List .= $objData->name_kj_sei." ".$objData->name_kj_mei."<br />";
}
}else{
$Send_List = "";
}
switch ($_POST["SendType"]) {
case "0":
$TypeChk[0] = "checked";
$TypeChk[1] = "";
$TypeChk[2] = "";
break;
case "1":
$TypeChk[0] = "";
$TypeChk[1] = "checked";
$TypeChk[2] = "";
break;
case "2":
$TypeChk[0] = "";
$TypeChk[1] = "";
$TypeChk[2] = "checked";
break;
default:
$TypeChk[0] = "checked";
$TypeChk[1] = "";
$TypeChk[2] = "";
}
$o_smarty->assign('Send_List' , $Send_List);
$o_smarty->assign('Send_User' , $_POST["Send_User"]);
$o_smarty->assign('TypeChk' , $TypeChk);
$o_smarty->assign('txtMemo' , $_POST["txtMemo"]);
$o_smarty->display('MST1140.tpl');
?>