10-26-2008, 08:15 PM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
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.
|
|
|