Re: [PHP] SESSION array problems [SOLVED]
- From: aballard@xxxxxxxxx ("Andrew Ballard")
- Date: Thu, 2 Oct 2008 11:13:17 -0400
On Thu, Oct 2, 2008 at 11:02 AM, tedd <tedd.sperling@xxxxxxxxx> wrote:
Hi gang:
As strange as it may seem, but when session variables are passed to another
page (i.e., used) you cannot extract ALL OF THEM using a loop when the
variable names you are using are the same as the SESSION index's names.
In other words, you cannot do this:
for ($i = 0; $i < $num_users; $i++)
{
$last_name = $_SESSION['last_name'][$i];
$first_name = $_SESSION['first_name'][$i];
echo("<p>$last_name $first_name</p>");
}
But you can do this:
for ($i = 0; $i < $num_users; $i++)
{
$last = $_SESSION['last_name'][$i];
$first = $_SESSION['first_name'][$i];
echo("<p>$last $first</p>");
}
See the difference?
This was a crazy one.
Now, someone show me where that is documented?
Cheers,
tedd
As several of us have suggested now, it's got to be register_globals.
That would make the following blocks of code equivalent:
<?php
for ($i = 0; $i < $num_users; $i++)
{
$last_name = $_SESSION['last_name'][$i];
$first_name = $_SESSION['first_name'][$i];
echo("<p>$last_name $first_name</p>");
}
for ($i = 0; $i < $num_users; $i++)
{
$_SESSION['last_name'] = $_SESSION['last_name'][$i];
$_SESSION['first_name'] = $_SESSION['first_name'][$i];
echo("<p>{$_SESSION['last_name']} {$_SESSION['first_name']}</p>");
}
?>
Andrew
.
- Follow-Ups:
- References:
- Re: [PHP] SESSION array problems
- From: Afan Pasalic
- Re: [PHP] SESSION array problems
- Prev by Date: Re: [PHP] Re: SESSION array problems UPDATE
- Next by Date: Re: [PHP] SESSION array problems [SOLVED]
- Previous by thread: Re: [PHP] SESSION array problems [SOLVED]
- Next by thread: Re: [PHP] SESSION array problems [THE REASON]
- Index(es):
Relevant Pages
|