ͼÐÎÊý×ÖÑeÖ¤´uÂe Code: <?
/*
*/
srand((double)microtime()*1000000);
//ÑeÖ¤Óû§ÊaÈeÊÇ*ñºÍÑeÖ¤ÂeÒ»ÖÂ
if(isset($_POST['authinput']))
{
if(strcmp($_POST['authnum'],$_POST['authinput'])==0)
echo "ÑeÖ¤³É¹¦£¡";
else
echo "Ñe֤ʧ°Ü£¡";
}
//Éu³ÉеÄËÄλÕuÊýÑeÖ¤Âe
while(($authnum=rand()%10000)<1000);
?>
-------------------------------------------------------------------------------------------------------------
<?
/*
*/
//Éu³ÉÑeÖ¤ÂeͼƬ
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);
//½«ËÄλÕuÊýÑeÖ¤Âe»aeÈeͼƬ
imagestring($im, 5, 10, 8, $HTTP_GET_VARS['authnum'], $white);
for($i=0;$i<50;$i++) //¼ÓÈe¸ÉÈÅÏoËØ
{
imagesetpixel($im, rand()%70 , rand()%30 , $gray);
}
ImagePNG($im);
ImageDestroy($im);
£ £ ?>