ChangeRegister.php
1.38 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
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']='註冊會員';
$url="<a href=../../../>首頁</a> > <a href=../cp/>會員中心</a> > 選擇註冊會員類型";
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form name="ChRegForm" method="GET" action="index.php">
<input name="tobind" type="hidden" id="tobind" value="<?=$tobind?>">
<tr class="header">
<td height="25"><div align="center">選擇註冊會員類型<?=$tobind?' (綁定賬號)':''?></div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="70%" height="25"><table width="100%" border="0" cellspacing="1" cellpadding="3">
<?php
while($r=$empire->fetch($sql))
{
$checked='';
if($r[groupid]==eReturnMemberDefGroupid())
{
$checked=' checked';
}
?>
<tr>
<td height="23">
<input type="radio" name="groupid" value="<?=$r[groupid]?>"<?=$checked?>>
<?=$r[groupname]?>
</td>
</tr>
<?php
}
?>
</table></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> <input type="submit" name="button" value="下一步"></td>
</tr>
</form>
</table>
<br>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>