hexadecimal color table

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
laptopguytogo
Forum Newbie
Posts: 3
Joined: Tue Jan 27, 2009 9:59 pm

hexadecimal color table

Post by laptopguytogo »

Hey,I'm trying to print out a table of the rgb hexi decimal color pallette for my java website, Can you guys give me a hint on where to start, all i have is the variables so far..

$red = 0x00;
$green = 0x00;
$blue = 0x0
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Re: hexadecimal color table

Post by josh »

Nested loops and bin2hex()
Post Reply