ave-cms/lib/kcaptcha/index.php

15 lines
201 B
PHP
Raw Permalink Normal View History

2017-06-24 00:58:56 +03:00
<?php
error_reporting (E_ALL);
include('kcaptcha.php');
session_start();
$captcha = new KCAPTCHA();
if($_REQUEST[session_name()]){
$_SESSION['captcha_keystring'] = $captcha->getKeyString();
}
?>