PHPCMS V9表单向导调用及分页
参考资料如下:
v9_form_tlj为你的表单数据表,`flqh`,`title`,`sj`,`username`,`datetime` 为你表单内的字段,page="$_GET"为分页代码,具体调用代码如下:
<div class="box"> <h5>报名情况</h5> {pc:get sql="SELECT `flqh`,`title`,`sj`,`username`,`datetime` FROM `v9_form_tlj` ORDER BY `datetime` DESC" num="10" page="$_GET"} <table width="100%" cellspacing="1" class="table-my"> <thead> <tr> <th width="25%"><strong>赛事活动</strong></th> <th width="23%"><strong>订单号码</strong></th> <th width="12%"><strong>报名会员</strong></th> <th width="20%"><strong>目标商家</strong></th> <th width="20%"><strong>报名时间</strong></th> </tr> </thead> <tbody> {loop $data $r} <tr> <td width="25%" align="center">{$r[title]}</td> <td width="23%" align="center">{$r[flqh]}</td> <td width="12%" align="center">{$r[username]}</td> <td width="20%" align="center">{$r[sj]}</td> <td width="20%" align="center">{date(‘Y-m-d H:i:s‘,$r[datetime])}</td> </tr> {/loop} </tbody> </table> {/pc} <div id="pages" class="text-c">{$pages}</div> </div>
表名及字段名按照自己的表单自行修改。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。