Skip to content

Instantly share code, notes, and snippets.

Created January 15, 2017 11:44
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 anonymous/e52cb7785f4446c3c6b75bebee942232 to your computer and use it in GitHub Desktop.
Save anonymous/e52cb7785f4446c3c6b75bebee942232 to your computer and use it in GitHub Desktop.
<?php
include "config.php";
$key = $_GET['key'];
$query = mysql_query("DELETE FROM users WHERE hash='$key'");
if ($query) {
echo "<h1>You have Unsubscribed!</h1>";
}else{
mysql_errno();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment