Skip to content

Instantly share code, notes, and snippets.

@erick-jeronimo
Created April 9, 2019 22:02
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 erick-jeronimo/a7823a9816aa3f54bdfd9d7042bc8f67 to your computer and use it in GitHub Desktop.
Save erick-jeronimo/a7823a9816aa3f54bdfd9d7042bc8f67 to your computer and use it in GitHub Desktop.
<?php
include '../../utils/bd.php';
$id = $_GET['id'];
$stmt = $conn->prepare("DELETE FROM cliente WHERE idcliente = $id");
$stmt->execute();
header("Location: ../../pages/cliente/listar.php");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment