Lo estoy intentando asi:
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))
{ $prioridad_color = array(
'En Proceso...' => '#DD0000',
'Concluido' => '#FF00FF'
);
echo"<tr style='background-color=' . $prioridad_color[$row[prioridad]] . ''>
<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>";
Y me sale Parse error: syntax error, unexpected '[', expecting ']' in E:\Archivos de programa\VertrigoServ\www\usuariosg\verpc.php on line 61.
Cual deberia ser la sintaxis correcta??