Dean Householder wrote:

> How can you pass an object from one page to another?  Is there any convenient way to 
>do it with PHP?
> 
> Dean
> 
> 


You've had some suggestions to use 'sessions' but you can't really pass 
an object between pages with sessions - UNLESS...

Unless both pages have the class definition for that object.  Only the 
values for the object would be passed, not the methods of the class 
which the object is based on.

Basically, make sure the class the object is based on is used in any 
page you want to use that object in.

Good luck...




--------------------------------
Michael Kimsal
http://www.tapinternet.com/php/
PHP Training Courses
734-480-9961




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