<?php | |
if(!isset($_GET["id"])) exit(); | |
$id = $_GET["id"]; | |
include_once "base_de_datos.php"; | |
$sentencia = $base_de_datos->prepare("DELETE FROM ventas WHERE id = ?;"); | |
$resultado = $sentencia->execute([$id]); | |
if($resultado === TRUE){ | |
header("Location: ./ventas.php"); | |
exit; | |
} | |
else echo "Algo salió mal"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment