Hi,
I'm running across a problem with Php in that I have an object which has a few attributes. Some attributes are simple strings and others are objects. My problem is that when I store the original object in a session I can retrieve it's string attributes but not any of the objects that it points to. Does anyone know what the problem could be? Thanks for any help.
Andy
I don't know if this is your problem, but I struggled for 2 days on it. Your session variables have to be declared as global in any function that references them. Seems redundant, but there it is.
HTH, Sheila
Do you have 'error_reporting(E_ALL)' at the top of your script?
are you sure you define all the classes BEFORE you start the session?
Did you get any error messages?
what exactly do you mean by 'the objects that it points to'?
Codesample?