最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
smarty用foreach
时间:2022-07-02 10:47:56 编辑:袖梨 来源:一聚教程网
昨天写了一个最简单的smarty文件,今天我就进一步学习,现在把学习的东西分享一下.首先.我们来看one.tpl文件.
this is my the <{$first}> smarty!
<{foreach from=$newsArray item=newsID}>
group_id:<{$newsID.id}>
group_name:<{$newsID.group_name}>
group_time:<{$newsID.group_time}>
group_auth:<{$newsID.group_auth}>
<{foreachelse}>
no infomation
<{/foreach}>
这里就用到foreach
下面再来看看smarty.php文件,
include_once("Smarty/libs/Smarty.class.php");
include_once("../inc/connect.php");
$smarty =new Smarty();
$smarty->template_dir ='Smarty/template';
$smarty->compile_dir ='Smarty/template_c';
$smarty->left_delimiter ='<{';
$smarty->right_delimiter='}>';
$sql ="select * from gx_user_group order by id desc";
$result =mysql_query($sql);
while( $rs=mysql_fetch_array($result))
{
$array[]=array('id'=>$rs['id'],'group_time'=>$rs['group_time'],'group_name'=>$rs['group_name'],'group_auth'=>$rs['group_auth']);
$smarty->assign('newsArray',$array);//最主要的是这一句了,因为smarty必须用数组它才会正常识别并读出
}
unset($array);
$smarty->display('one.tpl');
相关文章
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22
- 《潜行者2:切尔诺贝利之心》神出鬼没成就攻略分享 11-22
- 《潜行者2:切尔诺贝利之心》赶尽杀绝成就攻略分享 11-22
- 《潜行者2:切尔诺贝利之心》探测器升级方法介绍 11-22
- 《潜行者2:切尔诺贝利之心》负重控制攻略分享 11-22
- 《潜行者2:切尔诺贝利之心》背包机制特点介绍 11-22