buy.htm
5.17 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
127
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<title>点卡/会员服务购买 - 会员中心 - <?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" src="templets/js/load.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php"); ?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li class="thisTab"><a href="buy.php">会员升级/点卡充值</a></li>
<li><a href="operation.php">点卡/会员定单</a></li>
<li><a href="mypay.php" id="buy">我购买的文章</a></li>
<li><a href="shops_orders.php">商品定单</a></li>
<li><a href="shops_products.php" id="buy">我购买的商品</a></li>
</ul>
</div>
<div id="mainCp">
<div class="appMsg">
<p class="tips"><?php echo $cfg_ml->GetSta($dsql); ?></p>
</div>
<!--内容消息提示 -->
<?php
if($cfg_money_scores > 0) {
?>
<div class="postForm">
<h3 class="meTitle">
<?php
$canCav = floor($cfg_ml->fields['scores'] / $cfg_money_scores);
?>
<strong>用积分兑换金币</strong> (<?php echo "兑换价格:{$cfg_money_scores} 积分/个,你目前可兑换金币数量:{$canCav} 个"; ?>)</h3>
<form name="formrank" action="index_do.php?dopost=money2s&fmdo=user" method="post">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<tbody>
<tr>
<td width="15%" align="right" valign="top">兑换数量:</td>
<td width="35%"><input name="money" type="text" id="money" size="38" class="intxt" value="<?php echo $canCav; ?>" style="width:200px"/></td>
<td align='left'><button class="button2" type="submit">兑换</button></td>
</tr>
</tbody>
</table>
</form>
</div>
<?php } ?>
<div class="postForm">
<h3 class="meTitle">用点卡充值</h3>
<form name="formrank" action="check_card.php" method="post">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<tbody>
<tr>
<td width="15%" align="right" valign="top">点卡密码:</td>
<td><input name="cardid" type="text" id="cardid" size="38" class="intxt" style="width:200px"/></td>
</tr>
<tr>
<td align="right" valign="top">验证码:</td>
<td><input name="vdcode" type="text" id="vdcode" size="8" class="intxt" style='width:50px;text-transform:uppercase;' />
<img src="../include/vdimgck.php" alt="看不清?点击更换" align="absmiddle" style="cursor:pointer" onclick="this.src=this.src+'?'" />
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td align="right" valign="top"> </td>
<td><button class="button2 mt5" type="submit">充值</button></td>
</tr>
</tfoot>
</table>
</form>
</div>
<div class="postForm">
<h3 class="meTitle">购买新点卡:</h3>
<form name="f1" action="buy_action.php" method="post">
<input type="hidden" name="product" value="card" />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<tr style='height:28px;background:#F9FEE9;'>
<th width="10%">选择</th>
<th >点卡类型</th>
<th width="15%">金币数量</th>
<th width="15%">购买价格</th>
</tr>
<tbody>
<?php echo $moneycards;?>
</tbody>
</table>
<button class="button2 mt5" type="submit">购买</button>
</form>
</div>
<div class="postForm">
<h3 class="meTitle">会员升级</h3>
<form name="f1" action="buy_action.php" method="post">
<input type="hidden" name="product" value="member" />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<thead>
<tr>
<th colspan='5' style='text-align:left;padding-left:10px;height:24px;line-height:24px;'>会员升级:</th>
</tr>
</thead>
<tr style='height:28px;background:#F9FEE9;'>
<th width="10%">选择</th>
<th >产品名称</th>
<th width="12%">会员类型</th>
<th width="12%">时限(天)</th>
<th width="10%">价格</th>
</tr>
<tbody>
<?php echo $membertypes?>
</tbody>
</table>
<button class="button2 mt5" type="submit">购买</button>
</form>
</div>
</div>
<!--主操作区域 -->
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>