LIST1031.php
3.5 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
117
118
119
120
121
122
123
124
125
126
<?PHP
//*****************************************************************************
//*
//* プログラム名:め〜るNiポン!V2
//* プログラムID:LIST1031.php
//* 機能 :送信先選択(追加配信)
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include('./include/smarty.conf');
include("./include/session_start.inc");
include("./include/SessionChk.inc");
//********** ヘッダー処理 **********//
include("./include/headr_data.inc");
//***************************
//* 初期処理
//***************************
include("./include/dbcon.inc");
$strWhere = "";
//*** 送信済みユーザー ***//
$strSQL = "SELECT ";
$strSQL .= " * ";
$strSQL .= "FROM ";
$strSQL .= " mail_info ";
$strSQL .= "WHERE ";
$strSQL .= " mail_id = ".(int)$_POST["mail_id"]." ";
//echo $strSQL;
$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);
if ($strWhere==""){
$strWhere .= " WHERE syain_cd<>".$objData->syain_cd." ";
}else{
$strWhere .= " AND syain_cd<>".$objData->syain_cd." ";
}
}
//*** 送信元選択 ***//
if ($_POST["Send_User"]!=""){
$User_List = split ("," , $_POST["Send_User"]);
for($intI = 0; $intI < count($User_List)-1; $intI++){
if ($strWhere==""){
$strWhere .= " WHERE syain_cd<>".$User_List[$intI]." ";
}else{
$strWhere .= " AND syain_cd<>".$User_List[$intI]." ";
}
}
}
$strSQL = "SELECT ";
$strSQL .= " * ";
$strSQL .= "FROM ";
$strSQL .= " syain_tbl ";
$strSQL .= $strWhere;
$strSQL .= "ORDER BY ";
$strSQL .= " name_kn_sei ASC,";
$strSQL .= " name_kn_mei ASC,";
$strSQL .= " syain_cd ASC";
//echo $strSQL;
$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);
$Select_List[$intI][0] = $objData->syain_cd;
$Select_List[$intI][1] = $objData->name_kj_sei." ".$objData->name_kj_mei;
$Select_List[$intI][2] = $objData->mail_addr;
$Select_List[$intI][3] = $objData->pc_mail_addr;
}
$o_smarty->assign('Select_List' , $Select_List);
//*** 選択済みユーザー ***//
if ($_POST["Send_User"]!=""){
$strSQL = "SELECT ";
$strSQL .= " * ";
$strSQL .= "FROM ";
$strSQL .= " syain_tbl ";
$User_List = split ("," , $_POST["Send_User"]);
for($intI = 0; $intI < count($User_List)-1; $intI++){
if ($intI==0){
$strSQL .= " WHERE syain_cd=".$User_List[$intI];
}else{
$strSQL .= " OR syain_cd=".$User_List[$intI];
}
}
$strSQL .= " ORDER BY ";
$strSQL .= " name_kn_sei ASC,";
$strSQL .= " name_kn_mei ASC,";
$strSQL .= " syain_cd ASC";
$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);
$Send_List[$intI][0] = $objData->syain_cd;
$Send_List[$intI][1] = $objData->name_kj_sei." ".$objData->name_kj_mei;
$Send_List[$intI][2] = $objData->mail_addr;
$Send_List[$intI][3] = $objData->pc_mail_addr;
}
}else{
}
$o_smarty->assign('Send_List' , $Send_List);
$o_smarty->assign('mail_id' , $_POST["mail_id"]);
$o_smarty->assign('Send_User' , $_POST["Send_User"]);
$o_smarty->assign('SendType' , $_POST["SendType"]);
$o_smarty->display('LIST1031.tpl');
?>