Código PHP:
Ver original
$conex= $conexion->query("SELECT * FROM producto ORDER BY id ASC"); if ($conex->num_rows > 0){ while ($row = $conex->fetch_array(MYSQLI_ASSOC)){ $item .=" <option value='".$row['id']."'>".$row['referencia']." , ".$row['descripcion_item']."</option>"; } } if ($result = $conexion->query("INSERT INTO entrada (id , referencia , documento_entrada, fecha_entrada, cantidad_entrada,observaciones) VALUES ('$n','{$_POST['referencia']}','{$_POST['documento']}','{$_POST['fecha']}','{$_POST['cantidad']}','{$_POST['observaciones']}')")) { echo'<script> alert("Entrada Guardada Exitosamente"); window.location.href="../index.php"; </script>'; }else{ echo'<script> alert("Entrada No Guardada"); window.location.href="entradas.php"; </script>'; } }
Código HTML:
Ver original
<form name="entradas" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <center><div id="contenedorr"> <center><table> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> <button style="color:grey" type="submit" name="guardar" value="guardar" class="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text"><strong style="font-size:15px; text-align:center">Guardar Entrada</strong></span></button> <button onclick="window.location.href='inventario.php'" style="color:grey" type="button" name="volver" value="volver" class="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text"><strong style="font-size:15px">Volver</strong></span></button> </form>