Jump to content

Random Number


smithmr8

Recommended Posts

<?php

 

function rand_img($lenght=5)

{

$number = "";

for ($i = 1; $i <= $lenght; $i++)

{

    $number .= rand(0,9)."";

}

 

$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);

header('Content-Type: image/png');

imagepng($img);

imagedestroy($img);

 

}

 

rand_img();

 

?>

Link to comment
https://forums.phpfreaks.com/topic/101854-random-number/#findComment-521269
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.