ecshop 模板与数据库问题:在模板页输出数据库里的数据。
本人是ecshop小白,现在手机版中遇到点问题无法解决。需要写php语句,然后再从模板页里输出!要求:在category页中输出一级分类,要求直接从数据表ecs_cate...
本人是ecshop小白,现在手机版中遇到 点问题无法解决。需要写php语句,然后再从模板页里输出!
要求:在category页中输出一级分类,要求直接从数据表ecs_category提取parent_id为0和 is_show为1的cat_name 展开
要求:在category页中输出一级分类,要求直接从数据表ecs_category提取parent_id为0和 is_show为1的cat_name 展开
1个回答
展开全部
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}-->
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询