Files
firstgarden-web-gnu/plugin/kcaptcha/kcaptcha_image.php
2013-10-10 15:48:07 +09:00

11 lines
249 B
PHP

<?php
include_once("_common.php");
//error_reporting (E_ALL);
include('captcha.lib.php');
//session_start();
$captcha = new KCAPTCHA();
$captcha->setKeyString(get_session("ss_captcha_key"));
$captcha->getKeyString();
$captcha->image();
?>