Avocado.CommunityEdition/AvocadoEdition/plugin/kcaptcha/kcaptcha_image.php

9 lines
198 B
PHP
Raw Normal View History

2022-02-09 03:05:24 +09:00
<?php
include_once("_common.php");
include_once('captcha.lib.php');
$captcha = new KCAPTCHA();
$captcha->setKeyString(get_session("ss_captcha_key"));
$captcha->getKeyString();
$captcha->image();
?>