Hmm - this old chestnut again.
Be very careful when passing arrays, sometimes it seems to work swimmingly
well, othertimes not so well!
There was a lot of discussion about this about a month ago, with people
trying the serialise / urlencode techniques and then running into GET
problems over the l
try
$foo //array with serialized objects in it
$foo = rawurlencode($foo);
$url = "something/something/foobar.php?foo=$foo";
and on the next page
$foo = rawurldecode($foo);
$foo = unserialize($foo);
disclaimer: I didn't run thru these to see if it works
although it might be better to pass it a