View Single Post
Old 10-26-2008, 08:15 PM   #2 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

Do you mean something like this, where all users share the same session ID if they're guests? It is possible, but I don't any reason why you would want to do that.

php Code:
$szGuestSessionId = md5('TALKPHP_GUEST_SESSION');

if (!$pUser->hasLoggedIn())
{
    session_id($szGuestSessionId);
}

If they are guests, you should read the data from a class. For example:

php Code:
public function getUsername()
{
    if (isset($_SESSION['username']))
    {
        return $_SESSION['username'];
    }
   
    return 'Guest';
}
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote
The Following User Says Thank You to Wildhoney For This Useful Post:
codefreek (10-26-2008)