"Conover, Ryan" wrote:
> 
> I was wondering if I can pass an array that has serialized objects to next
> page via url encoding
> 
> $foo  //array with serialized objects in it
> 
> with the following encoding
> 
> something/something/foobar.php?foo=echo($foo)
> 
> and be able too unserialize $foo on the next page(foovar.php)

I would go with rawurlencode (serialize ($foo)), as the value, and
I guess it will work.

BTW, why aren't you using the session support? In that case it will pass
only the session ID,and the data associated w/ it will be un/serialized
only
on the server, w/o being passed back and forth.

-- teodor

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to