Either use a session variable or a cookie.
if the array is small then you could transfer each of its values into get vars.
Or if you can use a form? possibly with some javascript to auto submit the form..
echo("<form target='nextpage.php' action='post'>");
echo("<p>Click next when ready.</p>");
foreach($array as $key=>$value) {
echo("\n<input type='hidden' name='myarray[$key]' value='$value'>");
echo("<input type='submit' value='Next'>");
}
on next page then do something like
$myarray = $_POST["myarray"];
and you should be good to go.