<?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 Add IP to the database */
mysql_connect ($shelldb_host, $shelldb_user, $shelldb_pass);
mysql_select_db ($shelldb_db);
$insert = mysql_query ("INSERT INTO ip (ip_num, acc_id)
VALUES ('$ip_num', '$acc_id')
");
if(!$insert)
{
echo "There was a error", mysql_error();
exit;
}
echo "The IP ID Number is:-";
echo mysql_insert_id();
echo '<A href="/index.php">Addition of IP Successfull Click Here</A>';