Why in the world won’t this work I don’t have people to go to for simple questions like this so I apologize.
[php]<?php
if (isset($_GET[‘e’])) {
include_once "connect_to_mysql.php";
$email = $_GET['e'];
$sql_delete = mysql_query("DELETE FROM wp_newsman_lst_nickd WHERE email='$email' LIMIT 1");
if (!$sql_delete) {
echo "Sorry there seems to be trouble removing your listing. Please email Admin directly using this email address: ***";
} else {
echo "It is done. You will not receive our newsletter ever again unless you relist.";
}
}
?>[/php]