Nope.

something like this may get you where you want to go though

  include("myObjectClassDeclaration");
  $myInstance=new myObject;
  echo
"http://blahblah.com/?passedClass=".urlencode(serialize($myInstance));

Then in subsequent pages this should work:

  include("myObjectClassDeclaration");
  $myInstance=unserialize($passedClass);


<[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> does this make sense?
>
> assuming:
>
> 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?
>
> --
> PHP Database 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]
>



-- 
PHP Database 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