MST1130.php 1.12 KB
<?PHP 
//*****************************************************************************
//* 
//* プログラム名:め〜るNiポン!V2
//* プログラムID:MST1120.php
//* 機能        :配布用画面表示
//* 
//*****************************************************************************

header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include('./include/smarty.conf');
include("./include/session_start.inc");
include("./include/SessionChk2.inc");
include("./include/dbcon.inc");
include("./include/jcode.phps");
if($_SERVER["ENV"] == "test"){
	$strURL = "http://etc.media-tek.jp/reg2.php?i=".str_rot13($PHP_POST_SYAIN_ID);
}
if($_SERVER["ENV"] == "production"){
	$strURL = "http://www.mtc-sv.jp/reg2.php?i=".str_rot13($PHP_POST_SYAIN_ID);
}
//$strURL = "http://125.206.112.127/reg.php?i=".str_rot13($PHP_POST_SYAIN_ID);
//$strURL = "http://211.5.200.156/araya_web/mail_ni_pon_v2/reg.php?i=".str_rot13($PHP_POST_SYAIN_ID);

$o_smarty->assign('strURL', $strURL);
$o_smarty->assign('PHP_POST_DB_USER_NAME', $PHP_POST_DB_USER_NAME);

$o_smarty->display('MST1130.tpl');

?>