Este es el codigo que uso para mostrar los datos dentro de inputs pero no se como enviar todos los campos que tengan cantidad agregada
Código PHP:
Ver original<center>
<?php
$sQry = "SELECT * FROM productos_respaldo ORDER BY IdProducto";
$Con = $Conexion->query($sQry);
//$Res = mysqli_fetch_array($Con);
?>
<table>
<tr>
<th>Id</th>
<th>Nombre</th>
<th>Descripcion</th>
<th>Cantidad</th>
</tr>
<tr>
<td><input type="text" name="Id[]" size="2%" value="<?php echo $Res['IdProducto'];?>" readonly></td>
<td><input type="text" name="Nom[]" size="12%" value="<?php echo $Res['Nombre'];?>" readonly></td>
<td><input type="text" name="Des[]" size="50%"value="<?php echo $Res['Descripcion'];?>" readonly></td>
<td><input type="text" name="Cant[]" size="2%"></td>
</tr>
<?php } ?>
</table>
</center>