ecshop 模板与数据库问题:在模板页输出数据库里的数据。

本人是ecshop小白,现在手机版中遇到点问题无法解决。需要写php语句,然后再从模板页里输出!要求:在category页中输出一级分类,要求直接从数据表ecs_cate... 本人是ecshop小白,现在手机版中遇到 点问题无法解决。需要写php语句,然后再从模板页里输出!
要求:在category页中输出一级分类,要求直接从数据表ecs_category提取parent_id为0和 is_show为1的cat_name
展开
 我来答
百度网友04f57c7
2017-05-07 · TA获得超过351个赞
知道答主
回答量:21
采纳率:0%
帮助的人:5.9万
展开全部

1.可以先在你的category.php里去定义

  function get_parent_id_tree($parent_id)
{
$three_c_arr = array();
$sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$parent_id' AND is_show = 1 ";
if ($GLOBALS['db']->getOne($sql))
{
$child_sql = 'SELECT cat_id, cat_name, parent_id, is_show ' .
'FROM ' . $GLOBALS['ecs']->table('category') .
"WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC ";
$res = $GLOBALS['db']->getAll($child_sql);
foreach ($res AS $row)
{
if ($row['is_show'])
$three_c_arr[$row['cat_id']]['id']   = $row['cat_id'];
$three_c_arr[$row['cat_id']]['name'] = $row['cat_name'];
$three_c_arr[$row['cat_id']]['url'] = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);
}
}
return $three_c_arr;
}

2.再在你的category.dwt文件中显示

   <?php
 $this->assign('thiscid1', get_parent_id_tree(0));//调用父级分类的下级分类
 ?>
 
   <!--{foreach from=$thiscid1 item=list name=name}-->
 <A href="{$list.url}" target=_blank >{$list.name}</A>
  <!--{/foreach}-->
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式