LIST1030.php
2.96 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?PHP
//*****************************************************************************
//*
//* プログラム名:め〜るNiポン!V2
//* プログラムID:LIST1030.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] = "";
}
//*** 配信情報を取得 ***//
$strSQL = "SELECT ";
$strSQL .= " * ";
$strSQL .= "FROM ";
$strSQL .= " mail_data ";
$strSQL .= "WHERE ";
$strSQL .= " mail_id = " . (int)$_POST["mail_id"];
$objRec = pg_exec($strSQL);
if($objRec==false){
echo("SQL実行に失敗しました(SELECT)");
exit;
}
$objData = pg_fetch_object($objRec, 0);
$subject_name = htmlspecialchars($objData->subject_name);
$contents = nl2br(htmlspecialchars($objData->contents));
$o_smarty->assign('mail_id' , $_POST["mail_id"]);
$o_smarty->assign('Send_List' , $Send_List);
$o_smarty->assign('Send_User' , $_POST["Send_User"]);
$o_smarty->assign('TypeChk' , $TypeChk);
$o_smarty->assign('subject_name', $subject_name);
$o_smarty->assign('contents' , $contents);
$o_smarty->assign('intGroupCount', count($User_List));
$o_smarty->assign('PHP_POST_DB_FLG', (int)$PHP_POST_DB_FLG);
$o_smarty->display('LIST1030.tpl');
?>