Files
ave-cms-alt/lib/kcaptcha/index.php
2025-09-18 17:05:50 +05:00

15 lines
201 B
PHP

<?php
error_reporting (E_ALL);
include('kcaptcha.php');
session_start();
$captcha = new KCAPTCHA();
if($_REQUEST[session_name()]){
$_SESSION['captcha_keystring'] = $captcha->getKeyString();
}
?>