Código PHP:
Ver originalfor($i = 0; $i <= 50; $i++){
$cantidad = $_POST['cant'.$i.'c'];
$precio = $_POST ['prec'.$i.'c'];
$res = $_POST['res'.$i.'c'];
if($cantidad != 0)
echo $cantidad. " - Producto 1 a: " . "\$" . $precio . " -- Subtotal = $" . $res. " \n " . "<br>";
}
Te recomendaría que los campos del formulario tuvieran un nombre más "limpio", en lugar de 'cant1c' llamarlos cantidad1 así luego quedaría mejor poner $_POST['cantidad'.$i];