Tema: Color Celdas
Ver Mensaje Individual
  #12 (permalink)  
Antiguo 23/03/2008, 10:20
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 3 meses
Puntos: 845
Re: Color Celdas

cambia el(esta al final)
Código:
for ($n = $NumLow; $n < $NumHigh; $n++) {
   print $DataArray[$n];
   if (!$DataArray[$n]) {
      Print "<br><br><b><font color =\"#000000\">NO NAY MAS COMENTARIOS</b>";
      exit;
   }
}
por

Código:
for ($n = $NumLow; $n < $NumHigh; $n++) {
    $color=($n%2==0)?'red':'blue';
    echo "<div style=background:$color;>$DataArray[$n]</div>" ;
    if (!$DataArray[$n]) {
         Print "<br><br><b><font color =\"#000000\">NO NAY MAS COMENTARIOS</b>";
       exit;
    }
}