Amigo, este es el codigo php completo:
Código PHP:
<?php
$host ="localhost";
$user ="root";
$password ="2012";
$db ="deposito";
$enlace = mysql_connect($host,$user,$password);
mysql_select_db($db,$enlace);
$consulta = mysql_query("SELECT * FROM com order by gerencia ASC",$enlace);
echo "<table width='100%'>";
echo "<thead>";
echo "<tr>";
echo "<th width='20%'>Gerencia</th>";
echo "<th width='40%'>COM</th>";
echo "<th width='15%'>Pto Trabajo</th>";
echo "<th width='15%'>Codigo SAP</th>";
echo "<th width='10%'>Acción</th>";
echo "</tr>";
while ($row = mysql_fetch_array($consulta)) {
$id = $row["id"];
$gerencia_color = array(
'Region Andes' => '#DD0000',
'Region Occidental' => '#FF00FF'
);
echo("<tr style='background-color: { $gerencia_color[$gerencia] };'>\n");
echo("<td width='20%'>" . $row["gerencia"] . "</td>\n");
echo("<td width='40%'>" . $row["coms"] . "</td>\n");
echo("<td width='15%'>" . $row["pto_trabajo"] . "</td>\n");
echo("<td width='15%'>" . $row["codigo_sap"] . "</td>\n");
echo("<td width='10%'><a href='editarcom.php?id=$id'><center><img src='images/editar.png' title='Editar'></center></a></td>\n");
echo "</tr>";
}
echo "</table>";
?>