<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
 
<html>
 
<head>
 
    <title>Add new user to database <?php print("$DB"); ?></title>
 
        <link rel="stylesheet" href="settings.css" type="text/css">
 
</head>
 
 
<body>
 
<center>
 
<br><br><br><br>
 
<?php
 
include("common.inc");
 
 
$dbf->select_db($DB);
 
 
if(($uname == "") or ($pass == "")){
 
    print("Please enter a username and password <a href=\"javascript: history.back();\">back</a>");    
 
    die();    
 
}
 
 
$dbf->make_user($uname,$pass);
 
 
print("New user has been added succesfully!");
 
 
?>
 
</center>
 
 
 
</body>
 
</html>
 
 
 
 |