Jump to content

$_SESSION['username']=$username; Not case sensitive


slj90

Recommended Posts

Here is the page which creates the session. 

 session_start();
$_SESSION['username']=$username;

Here is where I am trying to display it


session_start();
$username = $_SESSION['username'];
echo $username;

I have checked the database and can confirm the username has capitals in there.

 

Thanks

you have marked this thread as solved?

 

i'm going to guess that you actually have two rows in your database table, one as lower-case and one with the capitalization you expect. a database query will normally match any letter case, so, if you are entering your capitalized username, it can match an all lower-case row in your database table.

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.