Snippet
<?php
function anti_bot($lenght=4)
{
$number = "";
for ($i = 1; $i <= $lenght; $i++)
{
}
$width = 11*$lenght;
$height = 30;
$img = ImageCreate($width, $height);
$background = imagecolorallocate($img,255,255,255);
$color_black = imagecolorallocate($img,0,0,0);
$color_grey = imagecolorallocate($img,169,169,169);
imagerectangle($img,0, 0,$width-1,$height-1,$color_grey);
imagestring($img, 5, $lenght, 7, $number, $color_black);
imagepng($img);
imagedestroy($img);
}
anti_bot();
?>
Copy & Paste
|