Código PHP:
<?
include("config.php");
$sql="select * from stockvit where cod_vitrina = '$vitrina' and saldo > 0 ";
$res=mysql_query($sql,$conexion) or die("Problemas con selección STOCKVIT..<b>".mysql_error()."</b>");
$reg=mysql_num_rows($res);
if($reg > 0)
{
?>
<table id=tabla-style1 border=0 cellpadding=1 cellspacing=1>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Stock</th>
<th>Devolucion</th>
</tr>
<?
while($fila=mysql_fetch_array($res))
{
$idvi=$fila['id_stock'];
$vitrina=$fila['cod_vitrina'];
$codigo=$fila['cod_prod'];
$nombre=$fila['cod_nombre'];
$stock=$fila['saldo'];
$devol=$stock;
//paso
echo "<tr>
<td>$codigo</td>
<td>$nombre</td>
<td class='center'>$stock</td>
<td class='center'><input type=text name='cdevol' value='0' size=1></td>
</tr>";
}
echo "</table>
}
Else
{
echo “<p>No se encontraron datos …!</p>”;
}
?>
No tengo claro si el tema corresponde al foro de PHP o JAVASCRIPT.