Hi
Is it possible to pass an Object between php pages.
Shabbir
what do you maen by an object.
By object I mean an instance, for example, after Class circle { var $centerx; var $centery; var $radius; function ... } when I write $c = new circle; the $c would be a new object. and I want to pass $c from one page to another
I realize the date of this post is long past, but I was looking for the same thing and thought I would post what I found.
http://www.php.net/manual/en/language.oop.serialization.php
T