Enter Keyword Hear for Search This Blog

Saturday, 23 April 2016

captcha code with background image

captcha.php


<?php
$a="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$str="";

for($i=1;$i<=6;$i++)
{
       $str=$str.substr($a,rand(0,strlen($a)-1),1);
}

$img=imagecreate(200,100);
imagecolorallocate($img,200,100,100);
imagettftext($img,20,0,20,70,8,"RAVIE.TTF",$str);
header("content-type:image/jpeg");
imagejpeg($img);
?>

No comments:

Featured post

what is ajax?how to create ajax with php code

Ajax Introduction -  એજેક્સ નો ઉપીયોગ કરી ને તમે પેજ લોડ કાર્ય વિના બધી માહિતી મેળવી શકો.એજેક્સ થી તમે કોઈ પણ ડેટા ઝડપ થી મેળવી શકો છો...