Hey, Simple really, I just want to save an array within a session so I can access it throughout the session over multiple pages. Thanks!!!!
So do it. Arrays will save in a session like a normal variable.
session_start(); $foo = array("foo", "bar", "g0at"); session_register("foo");
And take a look at the session file in /tmp (or whatever your session_save_path is).
Scratch mine, his is better.