国内流行的内容管理系统(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.

21 lines
971B

  1. <?php
  2. /**
  3. * @version $Id: ajax_feedback.php 1 8:38 2010年7月9日Z tianya $
  4. * @package DedeBIZ.User
  5. * @copyright Copyright (c) 2022, 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' class='form-control text-uppercase'>";
  18. echo "<img src='{$cfg_cmsurl}/apps/vdimgck.php' id='validateimg' onclick='this.src=this.src+'?'' alt='验证码' title='验证码' />\r\n";
  19. }
  20. }
  21. ?>