PHPCMS留言板制作
发布:smiling 来源: PHP粉丝网 添加日期:2015-05-09 10:14:01 浏览: 评论:0
整理后发布,改进了几处,比如表单信息提交后不关闭框架,原文formid值未提示修改,index.html第四处修改地方也不对等等,将 ok.html success.html show_box.html三个文件放在 www\phpcms\templates\default\formguide\
将mymydialog.css放如在 www\statics\css\
打开:www\phpcms\modules\formguide\index.php
修改,最好是注释插入,不要直接修改.
- 46行
- $_GET['action'] ? exit : showmessage(L('form_expired'), APP_PATH.'index.php?m=formguide&c=index&a=index');
- 成
- $_GET['action'] ? exit : showmessage(L('form_expired'), APP_PATH.'index.php?m=formguide&c=index&a=ok');
- 79行
- showmessage(L('thanks'), APP_PATH);
- 成
- showmessage(L('thanks'),APP_PATH.'index.php?m=formguide&c=index&a=success');
- 97行
- $_GET['action'] ? exit : showmessage(L('had_participate'), APP_PATH.'index.php?m=formguide&c=index&a=index');
- 成
- $_GET['action'] ? exit : showmessage(L('had_participate'), APP_PATH.'index.php?m=formguide&c=index&a=ok');
- --phpfensi.com
- 在127行后添加
- public function ok() {
- include template('formguide', 'ok');
- }
- public function success() {
- include template('formguide', 'success');
- }
后台创建表单:
添加表单向导时的模版选择改成 show_box.html ,其他的按你的实际情况填,添加字段略,在模版文件中,你想插入的留言板链接的位置前,调加,打开表单向导后,在表单调用里查看src=''引号里formid的值.
留言板的链接就是:
- javascript:art.dialog({id:'message',iframe:'? m=formguide&c=index&a=show&formid=20&siteid=1', title:'意见反馈', width:'540', height:'360',drag: false,fixed: true,opacity: .5, lock:true});void(0);
将其中的formid的值,替换成你刚才查看的值即可.
文件下载:http://pan.baidu.com/s/1nt9lV2T
Tags: PHPCMS留言板 PHPCMS留言系统
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)