I just happened to have come across this question which was asked almost a year ago. I cannot believe that nobody actually answered his question. I thought that this is what a forum was supposed to be about. Anyway, for those who have the same question here is a very simple example:
There are two pages - Page #1
<?php
session_start();
session_register("chars");
$chars = array();
$chars[0] = "a";
$chars[1] = "b";
$chars[2] = "c";
?>
<head>
<title></title>
</head>
<body>
<a href="page_2.php">go to page 2</a>
</body>
Page #2:
<?php
session_start();
?>
<head>
<title></title>
</head>
<body>
<?
echo "char #1 = $chars[0]<br>";
echo "char #2 = $chars[1]<br>";
echo "char #3 = $chars[2]<br>";
?>
</body>
Page #2 will print out a, b, and c that were in the array.
Hope this might help somebody.
Cheerios
Terry