Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 5, 2019 18:16
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/c837e94d0ae6d70be77d428a0eefaf7d to your computer and use it in GitHub Desktop.
Save parzibyte/c837e94d0ae6d70be77d428a0eefaf7d to your computer and use it in GitHub Desktop.
<?php
$id = 1;
include_once "base_de_datos.php";
$sentencia = $base_de_datos->prepare("DELETE FROM mascotas WHERE id = ?;");
$resultado = $sentencia->execute([$id]);
if ($resultado === true) {
#OK
} else {
echo "Algo salió mal";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment