* Thus wrote Susan Ator ([EMAIL PROTECTED]):
>
> 2) Is there any way to use a variable in a session name?
>
> can I do:
> $msg="20031022"
> $_SESSION["$msg.name"] becomes $_SESSION['20031022name']
In this case the _SESSION key is 20031022.name. You'll want
somet
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&quo
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 ther
Two questions:
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']
2) Is there any
4 matches
Mail list logo