Jump to content

User Authentication


joshh131

Recommended Posts

I'm new to this forum, and PHP in general. So, hello to everyone!

 

I'm having a problem verifying whether or not my authentication script works. I'm not new to programming...just PHP.

 

Here it is..

<?php
//check if user is already logged in
if(isset($_session['username']))
{
    //init database information
    $db_server = "";
    $db_user = "";
    $db_password = "";
    $db_name = "";

    //connect to the database
    $connection = mysql_connect($db_server, $db_user, $db_password);
    if(!$connection)
    {
        die('Failed to connect: ' . mysql_error());
    }
    mysql_select_db($db_name, $connection);
        
    //verify login information
    $username = $_POST['username'];
    $password = $_POST['password'];
    $query = mysql_query("SELECT * FROM users WHERE username='$username'");
    if($query)
    {
        $array = mysql_fetch_array($query);
        if($_POST['password'] = $array['password'])
        {
            $_session['username'] = $array['username'];
            $_session['email'] = $array['email'];
            $_session['user_level'] = $array['user_level'];
            $_session['ip'] = $array['ip'];
            $_session['date_registered'] = $array['date_registered'];
            echo $_session['username'];
        }
        else
        {
            echo 'Bad Login Information!';
        }
    }
    else
    {
        die('Failed to login: ' . mysql_error());
    }
}
?>

<form action="auth.php" method="post">
<input name="username" type="text" size="20" maxlength="16">
<input name="password" type="text" size="20" maxlength="20">
<input name="submit" type="submit" value="Submit">
</form>

Link to comment
https://forums.phpfreaks.com/topic/217361-user-authentication/
Share on other sites

Sanitise that incoming $_POST data if your using it directly into an sql statement, and for your login logic, you need to see if any rows get returned if you check the username and password, then check that that result returns a row by using mysql_num_rows() and if it's more than 0, you have a match, then you can carry on from there and assign the values in that 'success' clause..

 

Hope that makes some sense...

 

Rw

Link to comment
https://forums.phpfreaks.com/topic/217361-user-authentication/#findComment-1128685
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.