Necesito comparar cant_ins (Cantidades Instaladas) y total (Cantidad en Deposito).
Quiero que me diga, que si hay solo 10% de productos en deposito respecto a los productos instalados, me diga que necesito SOLICITAR MAS PRODUCTOS.
Puedo puedo condicionar eso? Gracias
Este es el codigo php donde extraigo la tabla y valores:
Código PHP:
<?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>";
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%'>" . $row["total"] . "</td>\n");
echo "</tr>";
}
echo "</table>";
?>