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';