MySQL interesse |
|
Beste mensen, ik heb een verification code gemaakt tegen spammers..
maar nu krijg ik geen plaatje te zien..
<img src="verifycode.php" width="55" height="15" border="0">
verifycode.php :
<?php
session_start();
$rand=rand(100000,999999);
$_SESSION['vcode']=md5($rand);
$im=imagecreate(55,15);
$bg=imagecolorallocate($im,255,255,255);
$textcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
imagecolortransparent($im,$bg);
imagestring($im,5,0,0,$rand,$textcolor);
imagepng($im);
exit();
?>
<?php $rand=rand(100000,999999); $_SESSION['vcode']=md5($rand); $im=imagecreate(55,15); $bg=imagecolorallocate($im,255,255,255); imagecolortransparent($im,$bg); imagestring($im,5,0,0,$rand,$textcolor); imagepng($im); ?>
Kan iemand mij helpen?
|