Ever wanted to get random colours for your PHP scripts? This easy randomise script does just that – It randomly picks a few colours for you!
<?
//randomise the RGB colours
$r = rand(128,255);
$g = rand(128,255);
$b = rand(128,255);
//sets the colour code in 000000 format
$colour = dechex($r) . dechex($g) . dechex($b);
?>
That’s it! Then just use $colour in your PHP code. The dechex() method just converts the number to the hexadecimal format that you need.
I used half the colour spectrum (from 128 to 255) so that only the brighter colours will be generated. If you’d prefer, you can use the full spectrum (from 0 to 255) or the darker spectrum (from 0 to 128).
Have fun!
Similar Posts:
- Microsoft Word =rand Automatically Creates Text
- Use Javascript to Display Random Image and Link
- How To Convert Open Office document (.odf) to Microsoft Office Document Format With A Converter
- Htaccess Problem With HTTP Form Posts
- How To Solve Problem of PHP Fatal error: Allowed memory size of 8388608 bytes exhausted…









Mon, Apr 9, 2007
Miscellaneous, Programming & Code