Ver Mensaje Individual
  #6 (permalink)  
Antiguo 30/07/2012, 10:35
juniorhernandezg
 
Fecha de Ingreso: enero-2012
Mensajes: 109
Antigüedad: 12 años, 10 meses
Puntos: 0
Respuesta: Cambiar color fila según variable Mysql PHP

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&oacute;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>"
    
?>