sjgrouporderinfo.inc.php 467 B

1234567891011
  1. <?php
  2. global $_GPC, $_W;
  3. $storeid=$_COOKIE["storeid"];
  4. $cur_store = $this->getStoreById($storeid);
  5. $GLOBALS['frames'] = $this->getNaveMenu2($storeid);
  6. $sql=" select a.*,b.name as nick_name from".tablename('zhtc_grouporder')." a left join ".tablename('zhtc_user')." b on a.user_id=b.id where a.id=:id";
  7. $data[':id']=$_GPC['id'];
  8. $item=pdo_fetch($sql,$data);
  9. //$item=pdo_get('zhtc_grouporder',array('id'=>$_GPC['id']));
  10. include $this->template('web/sjgrouporderinfo');