I believe you would need to serialize $passedClass (which, I'm assuming
here, you've set as a myObject object) and then unserialize it to use it on
the following page.

http://www.php.net/manual/en/function.serialize.php and
http://www.php.net/manual/en/function.unserialize.php

Josh Hoover
KnowledgeStorm, Inc.
[EMAIL PROTECTED]

Searching for a new IT solution for your company? Need to improve your
product marketing? 
Visit KnowledgeStorm at www.knowledgestorm.com to learn how we can simplify
the process for you.
KnowledgeStorm - Your IT Search Starts Here 

> class myObject
> {
>     $var1 = "A";
>     $var2 = "B";
> }
> 
> http://blahblah.com/?passedClass=myObject
> 
> would passedClass also send with it being an oject both 
> variables and the
> rest of the class defined?

Reply via email to