"); for($r=0;$r<=255;$r+=16){ echo(""); for($g=0;$g<=255;$g+=16){ echo(""); for($b=0;$b<=255;$b+=16){ //echo("This is my test r:". myfunc($r) ." g:". myfunc($g) ." b:" .myfunc($b) .""); echo("". myfunc($r) ."". myfunc($g) ."" .myfunc($b) ." "); } echo(""); } echo(""); } echo(""); function myfunc($x){ $temp = dechex($x); if(strlen($temp) == 1){ $temp = $temp . "0"; } return $temp; } ?>