Jump to content

Login and Session Problem


ballouta

Recommended Posts

Hello

 

I am new to sessions, i tried to use sessions in login but i have a problem.

The user has a login page, after submitted I validate his/her username and password (select query), after that I wrote this (i think here's the big problem):

<?php
$_SESSION['username'] = "$user";
?>

then all other subpages are working correctly according to this session variable.

When the member tries to return back to his Main Page (the page that appeared after login in). The code fails because it begins with a query to check for username and password WHERE this member is already logged in.

 

Please guide me how to begin a good validation for username and password combining it with a session.

 

Thanks in advance.

Link to comment
Share on other sites

thanks, another short question

 

<?php
$result=mysql_query("select * from `members` where COLLATE latin1_bin user='" . $_SESSION['username'] . "' and pass='" . $_SESSION['password'] . "'"); 
?>

 

does the 'COLLATE latin1_bin' here applie sonly on the variable user? if yes, do i add it like this?

<?php
$result=mysql_query("select * from `members` where COLLATE latin1_bin user='" . $_SESSION['username'] . "' and  COLLATE latin1_bin pass='" . $_SESSION['password'] . "'"); 
?>

 

Thank You

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.