nested tables w/random colors
uses two while loops
one to begin & nest tables, one to close them out.
reload
for new colors
$i = 0; $total = 0; while($i<=75){ if ($i==75) break; $total += $i; $i++; $random = rand(1,5); if ($random==1){$color = "#FF0000";} if ($random==2){$color = "#00FF00";} if ($random==3){$color = "#0000FF";} if ($random==4){$color = "#000000";} if ($random==5){$color = "#FFFFFF";} echo "
"; } ?> $i = 0; $total = 0; while($i<=75){ if ($i==75) break; $total += $i; $i++; echo "
"; } ?>