php试用smarty和ADODB实现对数据分页读取(6)
来源:未知 责任编辑:责任编辑 发表时间:2014-04-20 03:36 点击:次
<title>Insert title here</title>
</head>
<body>
<table>
{section name=id loop=$arr_page}
<tr>
<td height = "20" align="center" bgcolor='#FFFFFF'>{$arr_page[id].Id}</td>
<td height = "20" align="center" bgcolor='#FFFFFF'>{$arr_page[id].temperature}</td>
<td height = "20" align="center" bgcolor='#FFFFFF'>{$arr_page[id].illumination}</td>
<td height = "20" align="center" bgcolor='#FFFFFF'>{$arr_page[id].moisture}</td>
<td height = "20" align="center" bgcolor='#FFFFFF'>{$arr_page[id].times|truncate:5:"..."}</td>
</tr>
{/section}
<tr>
<td height = "35" colspan="3" align ="center" bgcolor="#FFFFFF">{$showpage}</td>
</tr>
</table>
</body>
</html>
好了,做完了,只要在浏览器中定位到smarty_ADODB_fenye.php这个文件,启动服务器,OK,将会看到分页效果了。
我在做的过程中,也遇到了一些问题,一个是不能试用 truncate语句,这个问题很奇怪,到smarty官网查了下,让来,smarty子类实例化时,不会实例化其父类Smarty,因此,会导致truncate不可以用,解决的办法,自然是在子类中调用父类构造方法。
摘自 0+0+0+...=1
相关新闻>>
- 发表评论
-
- 最新评论 更多>>