Following is the code which works fine, but i want to add my own background img instead of blue. Also want to add alphabets in the code rand? Please help...
<?php
session_start();
$code=rand(10000,99999);
$_SESSION["code"]=$code ;
$im = imagecreatetruecolor(60, 24);
$bg = imagecolorallocate($im, 22, 86, 165);
$fg = imagecolorallocate($im, 255, 255, 255);
imagefill($im, 0, 0, $bg);
imagestring($im, 5, 5, 5, $code, $fg);
header("Cache-Control: no-cache, must-revalidate");
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>