BUY0001.php
1.31 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
<?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');
?>