Perfect. Thank you so much. That was exactly what I needed.

Susan

-----Original Message-----
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 22, 2003 1:53 PM
To: Susan Ator; [EMAIL PROTECTED]
Subject: Re: [PHP] Session output question


From: "Susan Ator" <[EMAIL PROTECTED]>
> 1) Is there any way to print out active sessions names?
>
> I have $_SESSION['SID'], $_SESSION['uid'], $_SESSION['msg']
> can I output the literal strings:
> $_SESSION['SID']
> $_SESSION['uid']
> $_SESSION['msg']

$keys = array_keys($_SESSION);

> 2) Is there any way to use a variable in a session name?
>
> can I do:
> $msg="20031022"
> $_SESSION["$msg.name"] becomes $_SESSION['20031022name']

Just like that or $_SESSION[$msg.'name']. Same rules as making a string
anywhere else; that's all you're doing.

---John Holmes...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to