11 lines
249 B
PHP
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();
|
|
?>
|