Pbootcms網(wǎng)站留言板標簽調(diào)用

留言板標簽

適用范圍:全站任意地方均可使用

標簽作用:用于用戶提交留言和調(diào)取留言記錄

1、留言提交表單

<form action="{pboot:msgaction}" ?method="post">

????聯(lián)系人:<input type="text" name="contacts" >

????手機:<input type="text" name="mobile" >

????內(nèi)容:<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}

調(diào)取的留言記錄默認執(zhí)行分頁,使用內(nèi)容列表的分頁代碼即可.
內(nèi)容隱私,使用截取功能: [message:mobile substr=1,3]****[message:mobile substr=8] ?輸出效果:187****6563

控制參數(shù):

num=* 數(shù)量,非必填,為調(diào)取的留言分頁大小

page=* 是否分頁1或0,非必填,用于關(guān)閉分頁

lg=* 調(diào)取指定語言留言,非必填,設(shè)置all則所有語言,不添加該參數(shù)則默認為當前語言(V1.3.7+)

3、留言記錄列表可用標簽

[message:n] 序號從0開始
[message:i] 序號從1開始
[message:contacts] 聯(lián)系人
[message:mobile] 手機
[message:content] 內(nèi)容
[message:recontent] 回復內(nèi)容
[message:ip] 用戶IP
[message:os] 用戶操作系統(tǒng)
[message:bs] 用戶瀏覽器
[message:askdate] 留言時間
[message:replydate] 回復時間
[message:***] 自定義的其它字段
[message:nickname] 會員昵稱(V3.0+)
[message:username] 會員賬號(V3.0+)
[message:headpic] 會員頭像(V3.0+)