Files
firstgarden-web-gnu/bbs/kcaptcha_image.php
2012-10-05 15:12:27 +09:00

11 lines
249 B
PHP

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