Jump to content

double login problem


Recommended Posts

I have a from page which requires login with a username and password. It appears to work but when you go to the form page and submit the form, it takes you back to login again. The second time you supply the correct username and password it works fine.

 

Here's code from the form page:

<?php
//check for authorization
session_start();
if ($_SESSION['logged'] != 1)
{
$redirect = $_SERVER['PHP_SELF'];
header ("Location: filemaint_login.php");
die();
}

 

And this is the code from the login page:

session_start();
define ('SQL_HOST','blah');
define ('SQL_USER','blah');
define ('SQL_PASS','blah');
define ('SQL_DATB','blah');
define ('SQL_LUSR','blah');
define ('SQL_LPAS','blah');
$_SESSION['logged'] = 0;

if(isset($_POST['submit']))
{
if ($_POST['username'] == SQL_LUSR && $_POST['password'] == SQL_LPAS)
{
 $_SESSION['logged'] = 1;
 header ("Location: file_maint.php");
}
else

Link to comment
https://forums.phpfreaks.com/topic/2237-double-login-problem/
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.