Big Color Table
Home
$row=0; $thevalues = array("00", "33", "66", "99", "cc", "ff"); foreach($thevalues as $key1=>$redvalue) { foreach($thevalues as $key2=>$greenvalue) { foreach($thevalues as $key3=>$bluevalue) { $theArray[] = $redvalue . $greenvalue . $bluevalue; } } } foreach($theArray as $key=>$thebgcolor) { print ("
"); $row++; print ("
$row
"); foreach($theArray as $key=>$thetxtcolor) { echo '
' . $thetxtcolor . '/' . $thebgcolor . '
'; } echo "
"; } ?>
Home