时间:2021-05-26
本文讲述了smarty简单应用实例。分享给大家供大家参考,具体如下:
<?phprequire 'smarty/libs/Smarty.class.php';$smarty = new Smarty;$smarty->template_dir="smarty/templates/templates";$smarty->compile_dir="smarty/templates/templates_c";$smarty->config_dir="smarty/templates/config";$smarty->cache_dir="smarty/templates/cache"; $hello = "Hello World!";$smarty->compile_check = true;//$smarty->debugging = true;$smarty->debugging = false;$smarty->caching=true;$conn=mysql_connect("localhost", "root","root"); //打开MySQL服务器连接mysql_select_db("lava_guess"); //链接数据库mysql_query("set names utf8"); //解决中文乱码问题$sql_list="Select * from t_sys_msg Order by id desc limit 0,10";$result_list=mysql_query($sql_list); //执行sql语句,返回结果//把记录集转换为数组while($rs_list=mysql_fetch_array($result_list)) { $msg_array[]=$rs_list;}$array[] = array("newsID"=>1, "newsTitle"=>"第1条新闻"); $array[] = array("newsID"=>2, "newsTitle"=>"第2条新闻"); $array[] = array("newsID"=>3, "newsTitle"=>"第3条新闻"); $array[] = array("newsID"=>4, "newsTitle"=>"第4条新闻"); $array[] = array("newsID"=>5, "newsTitle"=>"第5条新闻"); $array[] = array("newsID"=>6, "newsTitle"=>"第6条新闻");$smarty->assign("newsArray", $array);$smarty->assign("hello",$hello);//赋值$smarty->assign("msglist",$msg_array);$smarty->display('index.tpl');?>模板文件:index.tpl
<html><head><metahttp-equiv="Content-Type" content="text/html;charset=utf-8"><title>Smarty</title></head><body><hr>{$hello}<hr> {section name=loop loop=$msglist} id: {$msglist[loop].id}--{$msglist[loop].title}----{$msglist[loop].receiver}<br> {/section}<hr>{section name=loop loop=$newsArray}新闻编号:{$newsArray[loop].newsID}<br>新闻标题:{$newsArray[loop].newsTitle}<br><hr>{sectionelse}对不起,没有任何新闻输入!{/section}希望本文所述对大家基于smarty模板的php程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例分析了Smarty模板常见的简单应用。分享给大家供大家参考,具体如下:首先要将smarty这个类包含进来:?1include_once'../l
本文实例讲述了smarty简单分页的实现方法,分享给大家供大家参考。具体实现方法如下:以下是模板中的smarty代码,用smarty简单的代入相关的变量就行了,
本文实例讲述了Smarty高级应用之缓存操作技巧。分享给大家供大家参考,具体如下:smarty缓存控制smarty提供了强大的缓存功能。但有时我们并不希望整篇文
smarty实例教程(1)一、什么是smarty?smarty是一个使用PHP写出来的模板PHP模板引擎,它提供了逻辑与外在内容的分离,简单的讲,目的就是要使用
本文实例讲述了Smarty简单生成表单元素的方法。分享给大家供大家参考,具体如下:smarty生成表单元素功能实现的原理是:给smarty一个数组,用于生成和显