You will find this small function very usefull! am even using in my site to generate random colors for stat pics inorder to have better accuracy.
function random_color(){
mt_srand((double)microtime()*1000000);
$c = '';
while(strlen($c)<6){
$c .= sprintf("%02X", mt_rand(0, 255));
}
return $c;
}
Am sure u can find other ussage for this function