<?php include("../includes/session.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 Users to the database */
mysql_connect ($shelldb_host, $shelldb_user, $shelldb_pass);
mysql_select_db ($shelldb_db);
$insert = mysql_query ("INSERT INTO accounts (acc_type, acc_quota, acc_process, acc_machine, acc_login, cust_id)
VALUES ('$acc_type', '$acc_quota', '$acc_process', '$acc_machine', '$acc_login', '$cust_id')
");
if(!$insert)
{
echo "There was a error", mysql_error();
exit;
}
echo "The Account ID Number is:-";
echo mysql_insert_id();
echo '<A href="/index.php">Addition of Account Successfull Click Here</A>';