PbotCMS留言板调用

PbotCMS留言板调用
留言板标签
 
适用范围:全站可在任何地方使用
 
标签功能:用户提交信息并获取信息记录
 
1、留言提交表格
 
<form action="{pboot:msgaction}"  method="post">
    联系人:<input type="text" name="contacts" >
    手机:<input type="text" name="mobile" >
    内容:<input type="text" name="content" >
    验证码:<input type="text" name="checkcode" ><img   title="点击刷新"  src="{pboot:checkcode}" onclick="this.src='{pboot:checkcode}?'+Math.round(Math.random()*10);" />
    <button type="submit">提交</button>
</form>
 
表单的提交方式是post,表单中提交的字段名称需要与后台自定义表单中添加的字段一致,否则会导致提交失败。
 
需要更多字段时,请在后台自定义表中添加信息表单字段,然后在前台添加form字段.
 
标签说明:
 
{pboot:msgaction} 接收留言表格的地址
 
{pboot:checkcode} 验证码图片地址
 
2、留言记录列表
 
{pboot:message num=*}

    <p>[message:contacts]</p>

    <p>[message:content]</p>

{/pboot:message}
 
调取的留言记录默认执行分页,可使用内容列表的分页代码.
 
内容隐私,使用截取功能: [message:mobile substr=1,3]****[message:mobile substr=8]  输出效果:187****6563
 
控制参数:
 
num=* 数量,不需要填写,为了获取留言分页的大小
 
page=* 不需要填写分页1或0,以关闭分页
 
lg=* 获取指定语言信息,不需要填写,所有语言设置all,默认为当前语言(V1.3.7+)
 
3、留言记录列表可用于标签
 
[message:n] 序号从0开始
 
[message:i] 序号从1开始
 
[message:contacts] 联系人
 
[message:mobile] 手机
 
[message:content] 内容
 
[message:recontent] 回复内容
 
[message:ip] 用户IP
 
[message:os] 用户操作系统
 
[message:bs] 用户浏览器
 
[message:askdate] 留言时间
 
[message:replydate] 回复时间
 
[message:***] 其他自定义字段
 
[message:nickname] 会员昵称(V3).0+)
 
[message:username] 会员账号(V3.0+)
 
[message:headpic] 会员头像(V3).0+)