hi everyone,
Could anyone please teach me how to make the randomly generated text as an image? same as the image we have seen when we were signing up in this forum (www.thescripts.com). this is my code when i generate the random text.
[PHP]function random_password (){
$rand_pword = mt_rand(0,99999 99);
$pword = substr(md5($ran d_pword), 0, 5);
return $pword;
}[/PHP]
thanks..,
--nert (^_^)
Could anyone please teach me how to make the randomly generated text as an image? same as the image we have seen when we were signing up in this forum (www.thescripts.com). this is my code when i generate the random text.
[PHP]function random_password (){
$rand_pword = mt_rand(0,99999 99);
$pword = substr(md5($ran d_pword), 0, 5);
return $pword;
}[/PHP]
thanks..,
--nert (^_^)
Comment