AddAddress.php
3.2 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
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$postword=$enews=='EditAddress'?'修改地址':'增加地址';
$public_diyr['pagetitle']=$postword;
$url="<a href=../../../>首頁</a> > <a href=../../member/cp/>會員中心</a> > <a href='ListAddress.php'>配送地址列表</a> > ".$postword;
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form action="../doaction.php" method="post" name="addform" id="addform">
<tr class="header">
<td height="23" colspan="2"><?=$postword?></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="22%" height="25">地址名稱:</td>
<td width="78%" height="25"><input name="addressname" type="text" id="title2" value="<?=$r[addressname]?>" size="42">
*</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">姓名:</td>
<td height="25"><input name="truename" type="text" id="addressname" value="<?=$r[truename]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">郵箱地址:</td>
<td height="25"><input name="email" type="text" id="truename" value="<?=$r[email]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">固定電話:</td>
<td height="25"><input name="mycall" type="text" id="email" value="<?=$r[mycall]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">手機號碼:</td>
<td height="25"><input name="phone" type="text" id="mycall" value="<?=$r[phone]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">QQ號碼:</td>
<td height="25"><input name="oicq" type="text" id="oicq" value="<?=$r[oicq]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">MSN:</td>
<td height="25"><input name="msn" type="text" id="msn" value="<?=$r[msn]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">收貨地址:</td>
<td height="25"><input name="address" type="text" id="phone" value="<?=$r[address]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">郵編:</td>
<td height="25"><input name="zip" type="text" id="address" value="<?=$r[zip]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">地址周邊標誌性建築:</td>
<td height="25"><input name="signbuild" type="text" id="zip" value="<?=$r[signbuild]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">最佳收貨時間:</td>
<td height="25"><input name="besttime" type="text" id="signbuild" value="<?=$r[besttime]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td height="25"><input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
<input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="addressid" type="hidden" id="addressid" value="<?=$addressid?>"></td>
</tr>
</form>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>