<?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 IPs from the database */
mysql_connect ($shelldb_host, $shelldb_user, $shelldb_pass);
mysql_select_db ($shelldb_db);
$delete = mysql_query ("DELETE FROM ip
WHERE ip_id = '$ip_id'
");
if (mysql_affected_rows() != 1)
{
echo "There was a error", mysql_error();
exit;
}
echo "The IP ID Number is:-";
echo "$ip_id";
echo '<A href="/index.php">Deletion of IP<h2></h2> Successfull Click Here</A>';
?>