Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 17, 2019 22:10
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/408d0e12087156b4d56bd416ccf8c04d to your computer and use it in GitHub Desktop.
Save parzibyte/408d0e12087156b4d56bd416ccf8c04d to your computer and use it in GitHub Desktop.
<?php
/*
CRUD con PostgreSQL y PHP
@author parzibyte [parzibyte.me/blog]
@date 2019-06-17
================================
Este archivo elimina un dato por ID sin
pedir confirmación. El ID viene de la URL
================================
*/
if (!isset($_GET["id"])) {
exit();
}
$id = $_GET["id"];
include_once "base_de_datos.php";
$sentencia = $base_de_datos->prepare("DELETE FROM mascotas WHERE id = ?;");
$resultado = $sentencia->execute([$id]);
if ($resultado === true) {
header("Location: listar.php");
} else {
echo "Algo salió mal";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment