在 PBootCMS 中,你可以通过自定义表单和标签来实现留言功能。以下是详细的步骤和示例代码,帮助你在全站任意地方使用留言表单和留言记录列表。
1. 留言提交表单
示例代码
<form action="{pboot:msgaction}" method="post">联系人:<input type="text" name="contacts" required>手机:<input type="text" name="mobile" required>内容:<textarea name="content" required></textarea>验证码:<input type="text" name="checkcode" required> <img title="点击刷新" src="{pboot:checkcode}" onclick="this.src='{pboot:checkcode}?'+Math.round(Math.random()*10);" /><button type="submit">提交</button>
</form>