zencart会员中心订单搜索实现

2012-07-06 11:59 来源:www.chinab4c.com 作者:admin

     zencart会员中心订单搜索实现,这个看起来不复杂。我们在zen cart会员中心订单列表中,如果zencart的订单太多。那么我们是否搜索不过来呢,如果搜索不过来的话,是不是需要通过搜索框,或者搜索姓名,联系方式。以及会员的订单编号来找到某个zencart订单。

    1:includes/templates/template_default/templates/tpl_account_history_default.php增加搜索框。

   <form action="http://localhost/zend/index.php?main_page=account_history" method="get">
<input type="hidden" name="main_page" value="account_history">
<h1 id="accountHistoryDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
<div>
order_sn:<input type="text" name="ordersn"><input type=submit value=searchorder>
</div>

  </form>

   2:includes/modules/pages/account_history/header_php.php增加以下代码。

    $where = ' ';
if($_POST['ordersn']){

 $where.=" and o.orders_id = '".$_POST['ordersn']."' ";
 
}
 

   3:将$where写入到我们的SQL语句里面去。完成了SQL检索订单的筛选功能。

   来源:http://www.chinab4c.com