Advertisement

03.15.2002 at 10:29PM PST, ID: 20277610
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.8

PHP Sessions using $_SESSION

Asked by mancini in PHP Scripting Language

Tags:

Hello

Having trouble retrieving the session variables.

I am using the $_SESSION variable to store the sessions and the values are set.  However on the next page load, the values are lost and the user is not logged in.

I am just trying to do a simple authentication...

here is my code:
<index.php>
<?
include "sessions-lib.php";
include "auth-lib.php";
authenticate_user();
echo "i am logged in";
?>

<sessions-lib.php>
<?
session_name('restricted_area');
session_start();
?>

<auth-lib.php>
function authenticate_user() {
    global $reseller_id,$password,$attempt_login;

    if (isset($reseller_id) && isset($password) && isset($attempt_login) ) {
        attempted_login($reseller_id,$password);
    }
    elseif( isset($_SESSION["reseller_id"]) && isset($_SESSION["is_authorised"]) ) { #check for existing session
        return 1;
    }
    else {
        display_login_form();
        exit;
    }

    # else continue ...

}

function attempted_login($reseller_id,$password) {
    # authenticate user if details are correct
    $reseller_id    = ereg_replace(" ","",$reseller_id);
    $password       = ereg_replace(" ","",$password);
    if(!authenticate_user($reseller_id,$password))
    display_login_form('Unable to authorise. Supplied details are incorrect.');
        exit;
    }

    $_SESSION["reseller_id"]    = $reseller_id;
    $_SESSION["is_authorised"]  = 1;

    return true;
}
?>

so the index page includes the sessions-lib which should load the available sessions in and initialise $_SESSION ?

then when authenticate_user() is called, it should be able to see the session variables.

all it does is
1. display_login_form()
    so u enter your details
2. shows index page "i am logged in"
3. reload page and u will be prompted with the display_login_form() .

any ideas?  do i have to anything further to set the session variables?

have been to php.net and looked through there for an hour or so but i must be missing somthing.

thanks heaps for your help :)

Cheers

Steve





Start Free Trial
 
Loading Advertisement...
 
[+][-]03.15.2002 at 10:56PM PST, ID: 6870506

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 12:28AM PST, ID: 6870579

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 10:16AM PST, ID: 6871593

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 04:08PM PST, ID: 6872477

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 04:29PM PST, ID: 6872550

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: PHP Scripting Language
Tags: php
Sign Up Now!
Solution Provided By: andriv
Participating Experts: 3
Solution Grade: A
 
 
[+][-]03.16.2002 at 04:50PM PST, ID: 6872644

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 04:57PM PST, ID: 6872671

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 04:58PM PST, ID: 6872675

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.16.2002 at 05:50PM PST, ID: 6872888

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32