Re: [PHP-WIN] passing arrays of objects

2001-02-02 Thread Tom Mathews
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

RE: [PHP-WIN] passing arrays of objects

2001-02-01 Thread Doug Brewer
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