我们先来写显示留言的模板gb_list.tpl,保存在templates下
模板编写其实非常简单,实质上就是插一些php程序传递来的替换变量,并且在编辑器中也变成了可视化了,
非常方便修改
由于html代码太多,所以弄了个gb_list.tpl的截图
通过section循环读出记录集的内容,另外用了三个子模板top.tpl,gb_fpage.tpl(分页),footer.tpl
在这里,我的top.tpl做得很简单,内容只有
<div align="center"><img src="<{$banner}>" width="750" height="150"> </div>
footer.tpl就放入一些版权信息
gb_fpage.tpl的内容如下:
<table width=750 height="22" border=0 align="center" cellpadding=0 cellspacing=1 background="<{#tdbg#}>" style="border: 1px solid;">
<tr>
<td align="right" background="<{#fpagebg#}>" bgcolor="<{#tablebg#}>">
<{if $page>1}>
<a href="<{$fpage}>?page=1">首页</a> <a href="<{$fpage}>?page=<{$prepage}>" title="上一页"> <<< </a>
<{/if}>
<{if $page>0 }>
<{foreach from=$numpage item=curr_id}>
<a href="<{$fpage}>?page=<{$curr_id}>"><{if $page==$curr_id}>[<{$curr_id}>]<{else}><{$curr_id}><{/if}></a>
<{/foreach}>
<{/if}>
<{if $page<$pagecount}>
<a href="<{$fpage}>?page=<{$nexpage}>" title="下一页"> >>> </a> <a href="<{$fpage}>?page=<{$pagecount}>">末页</a>
<{/if}>
总计留言<{$pagecount}>页<{$recordcount}>条
</td>
</tr>
</table>
(续)