表单页面代码
<form method=post action=""> <!-- 如果提交到当前页面,action留空即可,如果需要提交到某个栏目,则使用{U(栏目id)}提交到对应的栏目页面 --> 标题:<input type="text" name="title"><br> 内容:<input type="text" name="content"><br> <input type="submit"> </form>
表单接收代码
{if isset($_POST['title'])}
{$newarticle=array()}
{$newarticle['cid']=3} {//提交的数据存储到某个栏目中} {$newarticle['title']=htmlspecialchars($_POST["title"])}
{$newarticle['content']=htmlspecialchars($_POST["content"])}
{$id=cms:article:add($newarticle)}
{if $id}
留言成功 留言文章id:{$id}
{else}
留言失败
{/if}
{/if}
如需更多输入框类型,请使用 自定义表单