Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Nick1337's website v1.0 (official files)

Status
Not open for further replies.
Elite Diviner
Joined
Jul 12, 2007
Messages
417
Reaction score
24
I found this register script somewhere:
Code:
   <?php
require('./configs/reg_conf.php');
    function doesUsernameExist($name){
        $exit = FALSE;
        $result = @mssql_query("SELECT * FROM ACCOUNT_TBL WHERE account='$name'");
        if (mssql_num_rows($result) != 0){
            $exit = TRUE;
        }
        return $exit;
    }

    if(isset($_POST['submit'])){
        $user = preg_replace ("[^A-Za-z0-9]", "", $_POST['username']);
        $pass = preg_replace ("[^A-Za-z0-9]", "", $_POST['password']);
        if($_POST['username'] == ""){
            echo '<font color="red">Enter a user.</font><br /><br />';
        }
        else if($_POST['password'] == ""){
            echo '<font color="red">Enter a password.</font><br /><br />';
        }
        else if ((strlen($_POST['username']) > 16) || (strlen($_POST['username']) < 3)){
            echo '<font color="red">The user should be 3 to 16 characters.</font><br /><br />';
        }
        else if ((strlen($_POST['password']) > 16) || (strlen($_POST['password']) < 3)){
            echo '<font color="red">The password should be 3 to 16 characters.</font><br /><br />';
        }
        else if($_POST['username'] != $user){
            echo '<font color="red">User with invalid characters.</font><br /><br />';
        }
        else if($_POST['password'] != $pass){
            echo '<font color="red">Password with invalid characters.</font><br /><br />';
        }
        else {
            $pass = md5('kikugalanet' . $pass);
            if(!doesUsernameExist($user)){
                $stmt = mssql_init('webCreateAcc', $link);
                mssql_bind($stmt, '@account', $user, SQLVARCHAR, false, false, 15);
                mssql_bind($stmt, '@password', $pass, SQLVARCHAR, false, false, 36);
                mssql_bind($stmt, '@email', $mail, SQLVARCHAR, false, false, 120);
                mssql_execute($stmt) or die ("Something is wrong on the execution");
                mssql_free_statement($stmt);
                echo '<font color="Green">Register Successfull.</font><br /><br />';
            }
            else {
                echo '<font color="red">User already Exist.</font><br /><br />';
            }
        }
        mssql_close();
    }
    
    echo '<form action="#" method="post">';
    echo 'Username: <input type="text" name="username" /><br />';
    echo 'Password: <input type="password" name="password" /><br />';
    echo '<input type="submit" name="submit" value="Register" />';
    echo '</form>';

?>

Is it possible to use this with this site?
 
Newbie Spellweaver
Joined
Aug 12, 2009
Messages
16
Reaction score
0
When I download the website I have that of file css and config it is normal? Because I would want the whole website please
 
Last edited:
i sell platypus
Loyal Member
Joined
Jun 26, 2009
Messages
2,638
Reaction score
1,326
When I download the website I have that of file css and config it is normal? Because I would want the whole website please

Make a thread in the Help section, look on the date.
 
Junior Spellweaver
Joined
Aug 8, 2007
Messages
154
Reaction score
2
I have tried and nothing seem to work...
 
Skilled Illusionist
Joined
Dec 22, 2008
Messages
340
Reaction score
6
lol.. thanks nick.. ive edited this using my tiny little leecher brain..
 
Status
Not open for further replies.
Back
Top