You can do one of the following:
a) Use serialize/unserialize.
first.php
...
$h is my array
<a href=\"last.php?h_val=" . urlencode(serialize($h)) . "\">Go next</a>
...
last.php
$h=unserialize(stripslashes($h_val));
b) Put the values in the URL.
first.php
<a href="last.php?h[0][name]=juan&h[0][age]=67&h[1][name]=pedro&h[1][age]=12">Go</a>
(write the key/value pairs with a loop)
last.php
you have the $h array with the values.
Good Luck from Spain