Jump to content

A question on sessions


Flames

Recommended Posts

I've been here quite a while but theres something i still cant seem to get right, sessions.

I've tried making a login system based around sessions but it never worked because you cant pass sessions on through pages, but i have seen websites using sessions and they dont pass them on through the URL, so if somebody would be able to tell me, if i used one main login page which validated info and set the sessions, which i then included on another page would i have access over the sessions?

Link to comment
Share on other sites

It is set in the cookie.

 

http://webscripts.softpedia.com/script/Snippets/disable-php-sessid-in-URL-3448.html

 

Will help you to disable it. If that is disable the default will be to use cookies to store the sessionid.

 

If the user does not have cookies enable it will resort to the url. Using the cookies you only need to call session_start and it will automatically get the sessionid from the set cookie and start that previous session.

Link to comment
Share on other sites

well one time i made a login script using sessions and it wouldnt get passed to the next page.

 

eg. login page

session_start();

$_SESSION['logged_in'] = "1";

header("location:user.php");

 

then on user.php

session_start();

if($_SESSION['logged_in''] == "1")

{

echo "logged in";

}

else

{

echo "logged out";

}

 

and it wouldnt work, any reasons why?

Link to comment
Share on other sites

Well one note, if the browser is closed the session ends. If you closed the browser and went back to the page, that is the reason why.

 

As for why it would not work, do a phpinfo(); and check that

 

Session Support 	enabled 

 

Cause it may not be enabled. Other than that I am not sure what would cause it.

Link to comment
Share on other sites

Well it depends. I always give my user the option to "remember me", of which I make a hash of their username and password and store in it for x number of days. Then if they close the browser and come back it checks for that session hash and then verifies it and re-logs in that user while re-populating the userdata in session.

 

If the user does not check that box I assume they want their data cleared on browser close and let it be.

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.