mirror of
				https://github.com/avecms/AVE.cms.git
				synced 2025-10-30 21:26:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			201 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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();
 | |
| }
 | |
| 
 | |
| ?>
 |