国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.1KB

  1. <?php
  2. /**
  3. * @version $Id: ajax_feedback.php 1 8:38 2010年7月9日Z tianya $
  4. * @package DedeBIZ.Member
  5. * @copyright Copyright (c) 2020, DedeBIZ.COM
  6. * @license https://www.dedebiz.com/license
  7. * @link https://www.dedebiz.com
  8. */
  9. require_once(dirname(__FILE__) . '/config.php');
  10. AjaxHead();
  11. if ($myurl == '') exit('');
  12. else {
  13. $uid = $cfg_ml->M_LoginID;
  14. $face = $cfg_ml->fields['face'] == '' ? $GLOBALS['cfg_memberurl'] . '/images/nopic.gif' : $cfg_ml->fields['face'];
  15. echo "用户名:{$cfg_ml->M_UserName} <input name=\"notuser\" type=\"checkbox\" id=\"notuser\" value=\"1\" />匿名评论\r\n";
  16. if ($cfg_feedback_ck == 'Y') {
  17. echo "验证码:<input name=\"validate\" type=\"text\" id=\"validate\" size=\"10\" style=\"height:18px;width:60px;margin-right:6px;text-transform: uppercase;\" class=\"nb\" />";
  18. echo "<img src='{$cfg_cmsurl}/plus/vdimgck.php' style='cursor:pointer' id='validateimg' onclick=\"this.src=this.src+'?'\" title='点击我更换图片' alt='点击我更换图片' />\r\n";
  19. }
  20. }