tri-ability/net/module/board/kcaptcha_image.php
2023-06-20 10:47:12 +09:00

8 lines
183 B
PHP

<?php
include_once('kcaptcha.php');
session_start();
$captcha = new KCAPTCHA();
$captcha->setKeyString($_SESSION['captcha_keystring']);
$captcha->getKeyString();
$captcha->image();
?>