Write a few things to a session in cakephp

Posted by kwokwai on Stack Overflow See other posts from Stack Overflow or by kwokwai
Published on 2010-05-10T07:59:38Z Indexed on 2010/05/10 8:04 UTC
Read the original article Hit count: 243

Filed under:

Hi all,

I am learning Session function in CakePhp, and see some examples like this on cakePHP
cookBook web site:

For example: 
write($mysession1, 'testing')

I am not sure if a session can only hold up a particular thing in it.
Is it possible to write an array to a session like:

mysession[0] = 'Testing0';
mysession[1] = 'Testing1';
mysession[2] = 'Testing2';

© Stack Overflow or respective owner

Related posts about cakephp