Salve a tutti,
ho un problemino, dovrei trasformare un colore esdecimale il rgb con php.
io avevo trovato su internet questo codice ma non funziona...
qualcuno sa aiutarmi... grazie in anticipoCodice PHP:
$red = 100;
$green = 100;
$blue = 100;
$col=array();
if( eregi( "[#]?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})", $hex_color, $ret ) )
{
$red = hexdec( $ret[1] );
$green = hexdec( $ret[2] );
$blue = hexdec( $ret[3] );
}