Hello!
How can I transfer an array between two web-pages through the URI?
Thank you for your comments.
Matthias
Try this:
<a href="targetpage.php?serialarray=<? print urlencode(serialize($myarray)) ?>">Go away</a>
in targetpage do this:
$myarray=unserialize($myarray);
and, no, you don't need to urldecode. PHP does that automatically to data coming via GET.