Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7566507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:25:58+00:00 2026-05-30T14:25:58+00:00

So I’m trying to get a simple session based login working, and my sessions

  • 0

So I’m trying to get a simple session based login working, and my sessions aren’t being saved at all. I’ve tried many things, but nothing works! Please help!

Edit: added start_session, but it is still empty

<?php 
 session_start();
 ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

…

$row = mysql_fetch_row($sql_result);

                            $_SESSION['id']= $row[0];
                            $_SESSION['uname'] = $row[1];
                            $_SESSION['pass'] = $row[2];
                            session_write_close(); <-- now removed, but the session is still empty


                            echo  $row[1] . "Login accepted.<br />";

This is the code to create the session. all the rows are accounted for, and the code is being called, but the session still turns out empty.

if(empty($_SESSION['uname'])) echo 'empty session';

Also, to note that firebug says 0 objects stored in sessionstorage.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:25:59+00:00Added an answer on May 30, 2026 at 2:25 pm

    Remove session_write_close()

    session_write_close() ends the session:

    End the current session and store session data.

    Any subsequent calls to $_SESSION will not return any data as the session has been written and then closed.

    Generally you would not call session_write_close() until just before you perform a header('Location: http://example.org') redirect. As this is not the case in your code you should remove it.

    Ensure you are calling session_start()

    I am assuming that you are calling session_start() at the top of all your scripts.

    Test your session

    To test that your session is working then I suggest implementing the following test script:

    <?php
    session_start();
    $_SESSION['test'] = 'Hello';
    echo $_SESSION['test'] . ' World!';
    // you should get: Hello World!
    

    This way you know that there is definitely something in your session array. In your sample code your are getting your data from a database, which might be returning empty values.

    PHP session and HTML5 sessionstorage confusion

    They are not one and the same thing. PHP’s sessions are stored on the server whereas the browser stores HTML5 sessionstorage locally in the browser. The HTML5 sessionstorage is a client side store of information that only lasts for that session. See the w3c specification for more information.

    PHP’s $_SESSION does not get stored or affect data in the HTML5 sessionstorage.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Basically, what I'm trying to create is a page of div tags, each has
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
Seemingly simple, but I cannot find anything relevant on the web. What is the
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
I have a text area in my form which accepts all possible characters from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.