Thread: RGB to HTML
View Single Post

  #3 (permalink)  
Old 02-21-2008
Toby A Inkster
 
Posts: n/a
Default Re: RGB to HTML

cjlopesmartins@gmail.com wrote:

> I have this mysql table field with a RGB value like 120-10-200 and I
> nead this php function to convert this value into html color #??????


<?php
$rgb = '120-10-200';
list ($r, $g, $b) = explode('-', $rgb);
$hex = sprintf('#%02x%02x%02x', $r, $g, $b);
?>



--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 22 days, 17:55.]

Bottled Water
http://tobyinkster.co.uk/blog/2008/02/18/bottled-water/
Reply With Quote