session_start(); would be the way you start it off
then
session_register("session_name");
now if you have an array called $array
make sure you do this before any output what so ever.
session_start();
$array=array(/*your array stuff here*/);
session_register("array");
//Next page do this
session_start("array");
//check if session registered
if(session_is_registered("array))
{
//echo the data
}
else
{
//do you stuff
}
Read up on sessions in the Manaul. Thats not the greatest example as it was done in less then 5mins