Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/08/2011, 18:39
Avatar de chwc
chwc
 
Fecha de Ingreso: julio-2008
Ubicación: Buenos Aires ! :D
Mensajes: 814
Antigüedad: 15 años, 9 meses
Puntos: 103
Respuesta: color fondo linea tabla dependiendo de un valor

Cita:
<?php
$a = "archivo.txt";
$b = @time() - @filectime("$a");

if($b > 10)$bgColor="#FE9A2E";
if($b =< 10)$bgColor="#FE2E2E";
?>
<tr style="background-color: <?php echo $bgColor; ?>;">