Jump to content

[SOLVED] PHP/MySQL Login


behrk2

Recommended Posts

Hey all, I have a question.

 

I am setting up a registration/login for my website with PHP and MYSQL. I have a register.html, register.php & a login.html, login.php.

 

I can successfully register a user (using register.html, register.php) into my database. Now, I am trying to authenticate the user with the login.html, login.php.

 

When I try to do so, however, I always recieve my error message "failed." It will not authenticate (despite several attempts of logging in with the same username and password of that which is in my database.)

 

Here is my code for login.php:

 

<?php
$dbhost = "localhost";
$dbname = "hub_info";
$dbuser = "xxxxxx";
$dbpass = "xxxxxx";

mysql_connect ( $dbhost, $dbuser, $dbpass)or die("Could not connect: ".mysql_error());
mysql_select_db($dbname) or die(mysql_error());

session_start();

$username = $_POST['username']; 
$password = md5($_POST['password']);  

$query = mysql_query("SELECT * FROM ra_info WHERE username='$username' AND password='$password'");

if (mysql_num_rows($query)<1) { 
    print "failed";
    } else { 
        $_SESSION["username"]; 
        $_SESSION["password"]; 
        print "You are now logged in."; 
    } 
?>

 

Does anyone have any ideas? Thanks!

Link to comment
https://forums.phpfreaks.com/topic/71437-solved-phpmysql-login/
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.