<?php include("../includes/session.php");?>
<?php include("../includes/config.php"); ?>
<?
if(!is_admin()) {
echo '<a href="/login.php">Sorry please login as a administrator</a>';
exit;
}
?>
<?
/* Process Script To Delete Accounts from the database */
mysql_connect ($shelldb_host, $shelldb_user, $shelldb_pass);
mysql_select_db ($shelldb_db);
$delete = mysql_query ("DELETE FROM accounts
WHERE acc_id = '$acc_id'
");
if (mysql_affected_rows() != 1)
{
echo "There was a error", mysql_error();
exit;
}
echo "The Account ID Number is:-";
echo "$acc_id";
echo '<A href="/index.php">Deletion of Account Successfull Click Here</A>';
?>