初来乍到的我希望得到大家的帮助!
我是一个初学者,我想做一个用户注册的界面,需要验证码,但是,我没有做出来,希望大家帮帮忙啊!我先谢谢各位了!我在网上找了一段代码,但是,我的编译器能识别,是怎么回事呢?
<?php
if (isset($_POST['sumbit']))
{
$a=$_POST['sumbit'];
if($a==$authnum)
{
echo "aaaaaaaaaaaaaaaaa";
}
else
{
echo "bbbbbbbbbbbbbbbbb";
}
}
?>
<html>
<head>
</head>
<body>
<form name="fm" action="<?php echo $_SERVER['PHP_SELF'];?>" method='post'>
<input type="text" name="te" value="">
<input type="submit" name="sub" >
</form>
</body>
</html>
<?php //???????
Header("Content-type: image/PNG");
srand((double)microtime()*1000000);
$im = imagecreate(62,20);
$black = ImageColorAllocate($im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
$gray = ImageColorAllocate($im, 200,200,200);
imagefill($im,68,30,$gray);
while(($authnum=rand()%100000)<10000);
//????????????
imagestring($im, 5, 10, 3, $authnum, $black);
for($i=0;$i<200;$i++) //??????
{
$randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
}
ImagePNG($im);
ImageDestroy($im);
?>