chk_authcode.php 331 B

1234567891011121314151617
  1. <?php
  2. !defined('IN_MYMPS') && exit('FORBIDDEN');
  3. $value = isset($value) ? strip_tags(trim($value)) : '';
  4. require_once MYMPS_DATA . '/config.db.php';
  5. @header('Content-type: text/html; charset=' . $charset);
  6. require_once MYMPS_INC . '/db.class.php';
  7. if (empty($value)) {
  8. echo '请输入验证码';
  9. }
  10. else {
  11. echo 'success';
  12. }
  13. ?>