how about...
//for registering
//then do the accessing of how array should
//be used.. example
$x[0]="1";
$x[1]="hello";
.
.
.
$x[n]="what ever you put";
session_register("x");
//then using it to the other page
session_start();
//then off you go access the array by using
//the array functions
echo $x[0];
array_push($x,"im here","oh im on top");
hope it helps
//how it helps;