grey and red stripes
uses while loop
variable height & color of stripes
reload
$i = 0;
$total = 0;
while($i<=100){
if ($i==100)
break;
$total += $i;
$i++;
$randomheight = rand(1,5);
$randomcolor = rand(1,10);
if ($randomcolor==1){$color = "red";}
if ($randomcolor>1){$color = "#666666";}
if ($randomcolor==2){$color = "white";}
echo " |
";
}
?>