La variable es $prioridad pero tiene diferentes valores, dependiendo de estos valores, quiero cambiarle color a la fila.
Esta es mi tabla:
Código PHP:
echo "<table class='hovertable' border='1' width='900px' align='center' cellspacing='0' cellpadding='0'><tr>
<th>Codigo</th>
<th>Encargado</th>
<th>Prioridad</th>
<th>Fecha del Problema</th>
<th>Numero de Computadora</th>
<th>Detalle</th>
<th>Estado</th>
<th>Fecha Que Se Reparo</th>";
while ($row = mysql_fetch_array($result))
{
echo"<tr><td><span class='texto'>$row[id]</span></div></td>
<td><span class='texto'>$row[encargado]</span></td>
<td><span class='texto'>$row[prioridad]</span></td>
<td><span class='texto'>$row[fechapro]</span></td>
<td><span class='texto'>$row[numeropc]</span></td>
<td><span class='texto'>$row[detalle]</span></td>
<td><span class='texto'>$row[estado]</span></td>
<td><span class='texto'>$row[fechare]</span></td>
</tr>";
}
echo"</table>";
Código PHP:
$prioridad_color = array(
'En Proceso...' => '#DD0000',
'Concluido' => '#FF00FF'
);
Código PHP:
echo("<tr style='background-color:" . $prioridad_color[$row['prioridad']] . ";'>\n");