ecshop商品页仿淘宝运费查询功能

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

[ecshop 仿淘宝 运费]方法:此方法没有调用数据库里那个,而是用JS实现的。 [ecshop 仿淘宝 运费]步骤: 1.goods.php(红色为增加的代码) 大概33行: $goods_id = isset($_REQUEST['id'])  ? intval($_REQUEST['id']) : 0; $smarty->assign('tc_goods_weight',get_goods_weight($goods_id));//tc:取得商品重量 $smarty->assign('regionname',get_region_name()); //tc:取得全国一级省市 然后在代码尾部加上两个函数: //tc:取得全国一级城市信息 function get_region_name(){ $sql="SELECT * FROM ecs_region WHERE parent_id ='1';"; return $GLOBALS['db']->getAll($sql); } function get_goods_weight($goods_id){ $sql="select goods_weight from ecs_goods where goods_id = '$goods_id';"; $rs = $GLOBALS['db']->getAll($sql); return $rs[0]['goods_weight']; } 找到: {$lang.goods_brand}{$goods.goods_brand}
     : 快递