shipping.ihtml

来自「php做的网上商店系统。简单易懂」· IHTML 代码 · 共 49 行

IHTML
49
字号
<table width="560" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr> 
    <td>
      <table width="560" border="0" cellspacing="0" cellpadding="0" bgcolor="#E8DCB8" align="CENTER">
        <tr> 
          <td background="/phpshop/images/ec-m2.gif" valign="TOP"><img src="/phpshop/images/ec-m1.gif" height="27" width="600"><br>
            <br>
            <table width="95%" border="0" align="CENTER">
              <tr> 
                <td class="unnamed11">&nbsp;<?php
$page_name = "Account Maintenance";
?>
<?php
  $q  = "SELECT * FROM user_info WHERE ";
  $q .= "address_type='ST' ";
  $q .= "AND user_id='" . $auth["user_id"] . "'";
  $db->query($q);
?>
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=10 WIDTH=100% ALIGN=CENTER>
<TR>
    <TD><B>送货信息</B>
    <BR>请详细填写你的送货信息!
<?php
  while ($db->next_record()) {
?>
   <BR>
   -<A HREF="<?php $sess->purl(SECUREURL . "?next_page=account/shipping&page=account/shipto&user_info_id=" . $db->f("user_info_id")); ?>">
   <?php $db->p("address_type_name"); ?></A>
<?php
  }
?>
   </TD>
</TR>
<TR>
    <TD><A HREF="<?php $sess->purl(SECUREURL . "?page=account/shipto&next_page=account/shipping"); ?>">添加一个新的送货地址 
      </A></TD>
  </TR>
</TABLE>
<!-- Body ends here --></td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
      <img src="/phpshop/images/ec-m3.gif" height="27" width="600"></td>
  </tr>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?