Home > Backend Development > PHP Tutorial > PHP graphic number verification code_PHP tutorial

PHP graphic number verification code_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 10:23:02
Original
829 people have browsed it

php graphic number verification code

I debugged all the following codes and passed them. Run authpage.php.



/*

* Filename: authpage.php

*/

srand((double)microtime()*1000000);

//Verify whether the user input is consistent with the verification code

if(isset($_POST['authinput']))

{


if(strcmp($_POST['authnum'],$_POST['authinput'])==0)

echo "Verification successful!";

else

echo "Verification failed!"; 

}

//Generate a new four-digit integer verification code

while(($authnum=rand()%10000)<1000);

?>





Please enter the verification code:




>

>





-------------------------------------------------- -------------------------------------------------- ------------


/*

* Filename: authimg.php

*/
//Generate verification code image
Header("Content-type: image/PNG");

srand((double)microtime()*1000000);

$im = imagecreate(58,28);

$black = ImageColorAllocate($im, 0,0,0);

$white = ImageColorAllocate($im, 255,255,255);

$gray = ImageColorAllocate($im, 200,200,200);

imagefill($im,68,30,$gray);

//Draw the four-digit integer verification code into the picture

imagestring($im, 5, 10, 8, $HTTP_GET_VARS['authnum'], $white);

for($i=0;$i<50;$i++) //Add interference pixels

{

imagesetpixel($im, rand()%70 , rand()%30 , $gray);

}

ImagePNG($im);

ImageDestroy($im);

 ?>
____________________

java->struts

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/845133.htmlTechArticlephp graphic number verification code The following codes have all passed my debugging. Run authpage.php. ? /* * Filename: authpage.php */ srand((double)microtime()*1000000); //Verify whether the user input...
Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template