MST1140.php 2.31 KB
<?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');

?>