Just can't seem to get this script to work... It adds the username and password to the database, but can't get it to remove it.
<?php
$name = "";
$email = "";
$msg_to_user = "";
if ($_POST['name'] != "") {
include_once "connect_to_mysql.php";
$name = $_POST['name'];
$email = $_POST['email']...