Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/12/2015, 12:12
edgaralcalaserra
 
Fecha de Ingreso: octubre-2015
Ubicación: ciudad juarez
Mensajes: 90
Antigüedad: 9 años, 1 mes
Puntos: 1
Pregunta pintar campos de tabla si se cumple la condicion

buen dia señores..

tengo una tabla html donde tengo un capo meta y el otro campo Logrado, necesito que cuando el campo logrado sea igual o mayor a el campo meta me lo pinte color verde y si es menor lo pinte rojo
Código PHP:
<?php


//hacemos la conexion al servidor MySql
$mysqli = new mysqli("localhost""root""Admi2015""eaton");
if (
$mysqli->connect_errno) {
    
printf("Connect failed: %s\n"$mysqli->connect_error);
    exit();
}
//$tipo = $_POST['tipo'];
//$dato = $_POST['dato'];
//$inicio = $_POST['inicio'];
//$final = $_POST['final'];

$queryemb=("SELECT *
FROM  embobinado"
);
$resutaemb=$mysqli->query($queryemb) or die(mysqli_error($mysqli));
$numemb mysqli_num_rows($resutaemb);
$queryoven=("SELECT *
FROM  oven"
);
$resutaoven=$mysqli->query($queryoven) or die(mysqli_error($mysqli));
$numoven mysqli_num_rows($resutaoven);
$querycore=("SELECT *
FROM corecoil"
);
$resutacore=$mysqli->query($querycore) or die(mysqli_error($mysqli));
$numcore mysqli_num_rows($resutacore);
$queryfinal=("SELECT *
FROM empaque"
);
$resutafinal=$mysqli->query($queryfinal) or die(mysqli_error($mysqli));
$numfinalmysqli_num_rows($resutafinal);
$metaemb=15;

$self ='consulta.php'//Obtenemos la página en la que nos encontramos
header("refresh:5; url=$self"); //Refrescamos cada 300 segundos
?>

<html >
<body><!-Vamos a crear una tabla que será impresa en el archivo excel->
 
<!-creamos la tabla de el reporte con border 1 y los títulos->
<table width="641" border="1">
<tr>
<th></th>
<th>Logrado</th>
<th>Meta</th>
</tr>
<tr>
<th>Embobinado</th>
<td  align="center"><?php echo$numemb;?></td>
<td  align="center"><?php echo$metaemb;?></td>
</tr>
<tr>
<th>Oven</th>
<td  align="center"><?php echo$numoven;?></td>
<td  align="center"><?php echo$metaemb?></td>
</tr>
<tr>
<th>Corecoil</th>
<td  align="center"><?php echo$numcore;?></td>
<td  align="center"><?php echo$metaemb;?></td>
</tr>
<tr>
<th>Final</th>
<td  align="center"><?php echo$numfinal;?></td>
<td  align="center"><?php echo$metaemb;?></td>
</tr>

</table>
</table>
</body>
</htm