Hola,
No sé la manera de insertar la variable para que se imprima en la tabla. Hice esto, pero no me imprime en las filas de la tabla.
Código PHP:
<head>
</head>
<link rel="stylesheet" type="text/css" href="css/estilo_tabla2.css">
<?php
$host ="localhost";
$user ="root";
$password ="movilnet2012";
$db ="deposito";
$enlace = mysql_connect($host,$user,$password);
mysql_select_db($db,$enlace);
$consulta = mysql_query("SELECT cant_ins,equipo,cod_m,nombre,cod_p, count(cod_p) as total from inventario group by nombre",$enlace);
echo "<table width='100%'>";
echo "<thead>";
echo "<tr>";
echo "<th width='10%'>Equipo</th>";
echo "<th width='40%'>Nombre</th>";
echo "<th width='10%'>Cod Material</th>";
echo "<th width='5%'>Cant. Items</th>";
echo "<th width='5%'>Cant. en Deposito</th>";
echo "<th width='10%'>Solicitar (SI/NO)</th>";
echo "<th width='10%'>Prioridad</th>";
echo "</tr>";
$porcent = 10;
while ($row = mysql_fetch_array($consulta)) {
$equipo = $row["equipo"];
$cod_p = $row["cod_p"];
$nombre = $row["nombre"];
$cod_p = $row["cod_m"];
$cant_ins = $row["cant_ins"];
$total = $row["total"];
echo("<tr>\n");
echo("<td width='10%'>" . $row["equipo"] . "</td>\n");
echo("<td width='40%'>" . $row["nombre"] . "</td>\n");
echo("<td width='10%'>" . $row["cod_m"] . "</td>\n");
echo("<td width='5%'>" . $row["cant_ins"] . "</td>\n");
echo("<td width='5%'>" . $row["total"] . "</td>\n");
echo("<td width='10%'>" . $row["cod_p"] . "</td>\n");
echo("<td width='10%'>" . (($total * $porcent/100) >= $cant_ins) ? 'SUFICUENTES PRODUCTOS' : 'SOLICITAR MAS PRODUCTOS' . "</td>\n");
echo "</tr>";
}
echo "</table>";
?>