clipbucket/upload/plugins/signup_captcha/captcha.php

10 lines
240 B
PHP
Raw Normal View History

2009-08-27 15:01:32 +00:00
<?php
define("IS_CAPTCHA_LOADING",true);
2009-08-27 15:01:32 +00:00
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);
?>