|
圖形數(shù)字驗證代碼Code: <?
/*
* Filename: authpage.php
*/
srand((double)microtime()*1000000);
//驗證用戶輸入是否和驗證碼一致
if(isset($_POST['authinput']))
{
if(strcmp($_POST['authnum'],$_POST['authinput'])==0)
echo "驗證成功!";
else
echo "驗證失?。?;
}
//生成新的四位整數(shù)驗證碼
while(($authnum=rand()%10000)<1000);
?>
<form action=authpage.php method=post>
<table>
請輸入驗證碼:<input type=text name=authinput style="width: 80px"><br>
<input type=submit name="驗證" value="提交驗證碼">
<input type=hidden name=authnum value=<? echo $authnum; ?>>
<img src=authimg.php?authnum=<? echo $authnum; ?>>
</table>
</form>
-------------------------------------------------------------------------------------------------------------
<?
/*
* Filename: authimg.php
*/
//生成驗證碼圖片
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);
//將四位整數(shù)驗證碼繪入圖片
imagestring($im, 5, 10, 8, $HTTP_GET_VARS['authnum'], $white);
for($i=0;$i<50;$i++) //加入干擾象素
{
imagesetpixel($im, rand()%70 , rand()%30 , $gray);
}
ImagePNG($im);
ImageDestroy($im);
主站蜘蛛池模板: 阳谷县| 大连市| 赣榆县| 高安市| 新营市| 三门县| 封开县| 秀山| 昔阳县| 庆云县| 丰县| 三河市| 洱源县| 菏泽市| 绩溪县| 秦安县| 惠安县| 喜德县| 昌吉市| 永新县| 贵德县| 梅河口市| 宁陕县| 互助| 厦门市| 卢湾区| 东光县| 满洲里市| 深圳市| 西平县| 京山县| 漳浦县| 鄱阳县| 岳阳县| 东辽县| 荆门市| 拜城县| 平遥县| 灵宝市| 株洲县| 视频|