Jump to content

[SOLVED] Login Function not working


mike12255

Recommended Posts

Im going to include two peices of code the function file code, and the code with the form and the code calling the function.

 

My problem is everyone i call the function it returns the error message but im using the right login information.

 

login.php:

 

 <?php
		if (isset($_POST['Submit'])){
		$error = login();
		if (isset($error)){
		echo '<table width="397" height="113" border="0" align="center" cellpadding="0" cellspacing="0">';
	echo"<tr><td>$error</td></tr>";
	echo "</table>";

		}

		}


		?>
            
<table width="397" height="113" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
             
              <td><form name="form1" method="post" action="login.php">
                <label>
           Username:   <input type="text" name="username" title="username:"id="username">
                </label></tr></td>
           
          
           <tr><td>
              <label>
                Password:    <input type="password" name="password" id="password">
              </label>
            </tr></td>
         <tr><td>
               <label>
                <input type="submit" name="Submit" id="Submit" align="right" value="Submit">
                   </form>
              </label> </td>
            </tr>
          </table>

 

Functions.php:

 

<?php
include ("connect.php");
error_reporting(E_ALL);
function login(){
$user = $_POST['username'];
$pass = $_POST['password'];


$sql = "SELECT * FROM tbl_users WHERE username = '$user' AND password = '$pass'";
$result = mysql_query($sql) or die (mysql_error());

$row = mysql_num_rows($result);

if ($row == 1){
$_SESSION['user'] = $user;
}else{
$error = "Error Invalid username or password";
return $error;
}

}


?>

 

anyone know why i keep getting this error message?

Link to comment
https://forums.phpfreaks.com/topic/151848-solved-login-function-not-working/
Share on other sites

Is the error message

"Error Invalid username or password"

Also,

 

Though, in the login.php file, shouldn't it call the functions.php file?

 

***EDIT***

 

If the error message is what I asked, then you wont need to call the functions.php file, yet

if ($row == 1){

$_SESSION['user'] = $user;

}else{

 

I believe should know what to do, I'm guessing it doesn't recognise what it is that it has to do. So it gives the error maybe?

well one problem I see is that in your login function it will not return a value if the login was successful.  you would be better off returning TRUE (valid login) or FALSE (bad login) and just outputting a message based on the return value of the function.

Basically, what I was trying to get at, but you said it in more complicated terms.

 

A Valid Login = Page to display to the user

A Invalid Login = Error

 

I think thats what you were getting at anyway lonewolf217.

 

login.php:

 

 
<?php

// session_start();
/* REMOVE QUOTES IF SESSION_START ISNT USED IN 
CONNECT.PHP TO INITIALISE SESSION */
require_once "functions.php";         if (isset($_POST['Submit'])){
         $error = login();
         if (isset($error)){
         echo '<table width="397" height="113" border="0" align="center" cellpadding="0" cellspacing="0">';
      echo"<tr><td>$error</td></tr>";
      echo "</table>";
         
         }
         
         }
         
         if ( !isSet($_SESSION['user']) ){
         ?>
            
 <table width="397" height="113" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
             
              <td><form name="form1" method="post" action="login.php">
                <label>
           Username:   <input type="text" name="username" title="username:"id="username">
                </label></tr></td>
           
          
           <tr><td>
              <label>
                Password:    <input type="password" name="password" id="password">
              </label>
            </tr></td>
         <tr><td>
               <label>
                <input type="submit" name="Submit" id="Submit" align="right" value="Submit">
                   </form>
              </label> </td>
            </tr>
          </table>
<?php } ?>

 

Functions.php:

 

<?php
include ("connect.php");
error_reporting(E_ALL);
function login(){
$user = mysql_real_escape_string($_POST['username']);
$pass = mysql_real_escape_string($_POST['password']);


$sql = "SELECT * FROM tbl_users WHERE username = '$user' AND password = '$pass'";
$result = mysql_query($sql) or die (mysql_error());

$row = mysql_num_rows($result);

if ($row == 1){
$_SESSION['user'] = $user;
// Header("Location: logged_in.php");
}else{
$error = "Error Invalid username or password";
return $error;
}

}


?>

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.