首页 > CMS > PhpCMS > 正文

PHPCMS留言板制作

2024-09-10 07:16:23
字体:
来源:转载
供稿:网友

整理后发布,改进了几处,比如表单信息提交后不关闭框架,原文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

修改,最好是注释插入,不要直接修改.

  1. 46行 
  2. $_GET['action'] ? exit : showmessage(L('form_expired'), APP_PATH.'index.php?m=formguide&c=index&a=index'); 
  3. 成 
  4. $_GET['action'] ? exit : showmessage(L('form_expired'), APP_PATH.'index.php?m=formguide&c=index&a=ok'); 
  5.  
  6. 79行 
  7. showmessage(L('thanks'), APP_PATH); 
  8. 成 
  9. showmessage(L('thanks'),APP_PATH.'index.php?m=formguide&c=index&a=success'); 
  10.  
  11. 97行 
  12. $_GET['action'] ? exit : showmessage(L('had_participate'), APP_PATH.'index.php?m=formguide&c=index&a=index'); 
  13. 成 
  14. $_GET['action'] ? exit : showmessage(L('had_participate'), APP_PATH.'index.php?m=formguide&c=index&a=ok'); 
  15. --Vevb.com
  16. 在127行后添加 
  17. public function ok() { 
  18. include template('formguide''ok'); 
  19. public function success() { 
  20. include template('formguide''success'); 

后台创建表单:

添加表单向导时的模版选择改成 show_box.html ,其他的按你的实际情况填,添加字段略,在模版文件中,你想插入的留言板链接的位置前,调加,打开表单向导后,在表单调用里查看src=''引号里formid的值.

留言板的链接就是:

  1. 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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表