2米免费资源网提供各种【稀缺资源】查找

ecshop购物过程的注册加手机注册项

www.12344.org/ 2015-09-12
 
有的时候我们使用ecshop建站,需要在注册时候加入手机注册项,以下最模板提供修改方法:
 1、打开flow.dwt 默认模板七百多行找到注册的显示的地方 加入
<tr>
<td bgcolor="#ffffff" align="right">手机:</td>
<td bgcolor="#ffffff"><input name="mobile_phone" type="text" class="inputBg" id="mobile_phone" /></td>
</tr>
 
 
2、打开flow.php 301行 修改为
      
$other['mobile_phone'] = $_POST['mobile_phone'];
if (register(trim($_POST['username']), trim($_POST['password']), trim($_POST['email'],$other)))