clipbucket/upload/plugins/signup_captcha/captcha.php
2009-08-27 15:01:32 +00:00

9 lines
No EOL
204 B
PHP

<?php
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);
?>