clipbucket/upload/plugins/signup_captcha/captcha.php
Arslan Hassan 2335bca10b Updated : conversion system
Added : new activation
Added : new user forgot password and username recover
Upaded : user.class.php
Added : ClipBucket Captcha System
Fixed : Category listing
Fixed : channels.html
2009-12-09 13:43:19 +00:00

10 lines
No EOL
240 B
PHP

<?php
define("IS_CAPTCHA_LOADING",true);
require '../../includes/common.php';
require "captcha/class.img_validator.php";
$word = substr(md5(rand(100,999999)),6,6);
$img = new img_validator();
$img->generates_image($word,true);
?>