当前位置: 代码迷 >> PHP >> 大神看下这个导航菜单在smarty里如何循环出来呢
  详细解决方案

大神看下这个导航菜单在smarty里如何循环出来呢

热度:227   发布时间:2016-04-28 18:56:20.0
大神看下这个导航菜单在smarty里怎么循环出来呢?
这是我取了其中一部分代码:
{foreach from=$nav_list name=nav_list item=nav}
 <td width="110" align="center"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td height="25" align="center" class="t1"><a href="{$nav.url}">{$nav.title}</a></td>
                      </tr>
                      <tr>
                        <td height="25" align="center" class="t1"><a href="jgjj.html">机关简介</a></td>
                      </tr>
                    </table></td>
       {if !$smarty.foreach.nav_list.last}
                    <td width="2" align="center"><img src="images/shu.jpg" width="2" height="75"></td>
{/if}
{/foreach}
------解决方案--------------------
你现在遇到什么问题了?
------解决方案--------------------
你可以用你原来的程序多循环几次不就行了,
/**
 +----------------------------------------------------------
 * 获取导航菜单
 * $parent_id 默认获取一级导航
 * $current_module 当前页面模型名称
 * $current_id 当前页面分类ID
 +----------------------------------------------------------
 */
function get_nav1($parent_id = 0, $current_module = '', $current_id = '', $type = 'middle')
{
$sql = "SELECT * FROM " . $this->table('nav') . " WHERE topid = '$parent_id' and (navid=1 or navid=2) ORDER BY sort,navid ASC";
$query = $this->query($sql);
while ($row = $this->fetch_array($query))
{
if ($row['module'] == 'nav')
{
$url = $row['guide'];
}
elseif ($row['quanpin'] == 1)
{
  $url = $row['module'];
}
else
{
$url = $this->rewrite_url($row['module'], $row['guide']);
}
$nav_list[] = array (
"id" => $row['navid'],
"nav_name" => $row['title'],
"url" => $url,
"sort" => $row['paixu'],
"eng" => $row['eng']
);
}
return $nav_list;
}
照着这个,不是有9列吗,你就弄9个这样的不就行了。