in reply to Re: Re: Re: Using Sessions between perl and php.
in thread Using Sessions between perl and php.
Arbitrary data structures.
What happens when the session information I need to store goes beyond simple key value pairs? What if I have something like:
# assume $session is via Apache::Session $session->{'email_targets'} = { "john@doe.com" => { 'first_name' => 'John', 'last_name' => 'Doe' }, "jane@doe.com" => { 'first_name' => 'Jane', 'last_name' => 'Doe' } };
HTH
/\/\averick
perl -l -e "eval pack('h*','072796e6470272f2c5f2c5166756279636b672');"
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Using Sessions between perl and php.
by Aristotle (Chancellor) on Jan 21, 2002 at 03:49 UTC | |
Re: (maverick) Re 4: Using Sessions between perl and php.
by jryan (Vicar) on Jan 21, 2002 at 06:31 UTC |