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.
16 lines
437 B
16 lines
437 B
<?php
|
|
define('IN_ASC', true);
|
|
define('INIT_NO_SMARTY', true);
|
|
|
|
require(dirname(__FILE__) . '/includes/init.php');
|
|
require(ROOT_PATH . 'includes/cls_captcha.php');
|
|
|
|
$img = new captcha(ROOT_PATH . 'data/captcha/', $_CFG['captcha_width'], $_CFG['captcha_height']);
|
|
@ob_end_clean(); //清除之前出现的多余输入
|
|
if (isset($_REQUEST['is_login']))
|
|
{
|
|
$img->session_word = 'captcha_login';
|
|
}
|
|
$img->generate_image();
|
|
|
|
?>
|