在php中查看同一页面上的验证码

时间:2012-07-22 12:56:41

标签: php javascript captcha

我正在以一种形式从用户输入提交调用javascript函数并检查是否填写了强制条目。如果是,则转到另一个文件。现在我在另一个文件中检查此验证码。我怎么能在同一页面上这样做? 提前谢谢你!

3 个答案:

答案 0 :(得分:0)

一个简单的PHP CAPTCHA脚本

<?php

session_start();
include("captcha.php");
$_SESSION['captcha'] = captcha();

echo '<img src="' . $_SESSION['captcha']['image_src'] . '" alt="CAPTCHA" />';

?>

more- http://www.abeautifulsite.net/blog/2011/01/a-simple-php-captcha-script/

答案 1 :(得分:0)

验证码生成代码

captcha.php:

$string = '';
for ($i = 0; $i < 5; $i++) // 5 -is considered here as the length of string
    $string .= chr(rand(97, 122));
$_SESSION['captcha']=$string;   // stores to session 
$image = imagecreatetruecolor(110, 28);
$fontArray[0]="a4.ttf";$fontArray[1]="a5.ttf";$fontArray[2]="a1.ttf";$fontArray[3]="a4.ttf";
// just a font array for diff look Note : try ttf
$font = 'font/'.$fontArray[rand()%3]; // selecting random font
$color = imagecolorallocate($image, 255, 255, 255);// color
$background = imagecolorallocate($image, 0, 0, 0); // background color
$grey = imagecolorallocate($image, 180, 180, 180);//shadow color
imagefilledrectangle($image,0,0,399,99,$background);
imagettftext($image, 18, 0, 11, 23, $grey, $font, $string);//shadow of the text
imagettftext($image, 18, 0, 10, 22, $color, $font, $string);// text
//Actual function array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
header("Content-type: image/png");
imagepng($image);

然后在显示页面中将其用作图像。喜欢 -

<img id="capcaptcha" src="captcha.php" />
<a onclick="new_capcaptcha()">Click here to reload captha</a>

的jQuery

function new_capcaptcha(){
    $('#capcaptcha').attr('src','');
    $('#capcaptcha').attr('src','captcha.php?rand='+Math.random());
    // to avoid browser cache passed 'rand'
    } 

用于验证,您可以使用先前存储的会话变量$ _SESSION ['captcha']

希望这会有所帮助

答案 2 :(得分:0)

验证码生成器 -

<?php 
session_start();
//Settings: You can customize the captcha here
$image_width = 200;
$image_height = 60;
$characters_on_image = 5;
$font = './monofont.ttf';

//The characters that can be used in the CAPTCHA code.
//avoid confusing characters (l 1 and i for example)
$possible_letters = '23456789bcdfghjkmnpqrstvwxyz';
$random_dots = 140;
$random_lines = 5;
$captcha_text_color="0x142864";
$captcha_noice_color = "0x142864";

$code = '';


$i = 0;
while ($i < $characters_on_image) { 
$code .= substr($possible_letters, mt_rand(0, strlen($possible_letters)-1), 1);
$i++;
}


$font_size = $image_height * 0.75;
$image = @imagecreate($image_width, $image_height);


/* setting the background, text and noise colours here */
$background_color = imagecolorallocate($image, 255, 255, 255);

$arr_text_color = hexrgb($captcha_text_color);
$text_color = imagecolorallocate($image, $arr_text_color['red'], 
        $arr_text_color['green'], $arr_text_color['blue']);

$arr_noice_color = hexrgb($captcha_noice_color);
$image_noise_color = imagecolorallocate($image, $arr_noice_color['red'], 
        $arr_noice_color['green'], $arr_noice_color['blue']);


/* generating the dots randomly in background */
for( $i=0; $i<$random_dots; $i++ ) {
imagefilledellipse($image, mt_rand(0,$image_width),
 mt_rand(0,$image_height), 2, 3, $image_noise_color);
}


/* generating lines randomly in background of image */
for( $i=0; $i<$random_lines; $i++ ) {
imageline($image, mt_rand(0,$image_width), mt_rand(0,$image_height),
 mt_rand(0,$image_width), mt_rand(0,$image_height), $image_noise_color);
}


/* create a text box and add 6 letters code in it */
$textbox = imagettfbbox($font_size, 0, $font, $code); 
$x = ($image_width - $textbox[4])/2;
$y = ($image_height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code);


/* Show captcha image in the page html page */
header('Content-Type: image/jpeg');// defining the image type to be shown in browser widow
imagejpeg($image);//showing the image
imagedestroy($image);//destroying the image instance
$_SESSION['6_letters_code_1'] = $code;

function hexrgb ($hexstr)
{
  $int = hexdec($hexstr);

  return array("red" => 0xFF & ($int >> 0x10),
               "green" => 0xFF & ($int >> 0x8),
               "blue" => 0xFF & $int);
}
?>

您还可以从www.uandblog.com(http://www.uandblog.com/How-to-Create-Captcha-Code-using-PHP

获取详细信息