stripes - revised
red, green, blue, black, white
this time uses a more efficient loop
reload



the code:

<?
$i = 0;
$total = 0;
while($i<=400){
if ($i==400)
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 = "#FFFFFF";}
if ($random==5){$color = "#000000";}
echo "<tr><td height =\"1px\" width=\"100px\" bgcolor=\"$color\"></td></tr>";
} ?>