Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 13, 2021 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/84fe97414855c1784ca97aa5fbeac1fe to your computer and use it in GitHub Desktop.
Save parzibyte/84fe97414855c1784ca97aa5fbeac1fe to your computer and use it in GitHub Desktop.
<?php
if (!isset($_POST["nombre"]) || !isset($_POST["precio"]) || !isset($_POST["descripcion"])) {
exit("Faltan datos");
}
include_once "funciones.php";
guardarProducto($_POST["nombre"], $_POST["precio"], $_POST["descripcion"]);
header("Location: productos.php");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment