BUY0001.php 1.31 KB
<?PHP 
//*****************************************************************************
//* 
//* プログラム名:め〜るNiポン!V2
//* プログラムID:BUY0001.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");

//********** ヘッダー処理 **********//
include("./include/headr_data.inc");

switch ($_POST["point"]) {
	case "1":  $Point_Name = "500ポイント(2,000円)";  break;
	case "2":  $Point_Name = "1100ポイント(4,000円)";  break;
	case "3":  $Point_Name = "1700ポイント(6,000円)";  break;
	case "4":  $Point_Name = "3500ポイント(10,000円)";  break;
	case "5":  $Point_Name = "8000ポイント(20,000円)";  break;
}				

$o_smarty->assign('point'      , $_POST["point"]);
$o_smarty->assign('Point_Name' , $Point_Name);
$o_smarty->assign('buy_name'   , $_POST["buy_name"]);
$o_smarty->assign('mail_add1'  , $_POST["mail_add1"]);
$o_smarty->assign('mail_add2'  , $_POST["mail_add2"]);
$o_smarty->display('BUY0001.tpl');

?>