Hello.
How do I pass an object across pages? Reload, refresh etc.
My test page creates object A:
$A = new A();
Object A creates Object B and Object C from the constructor method:
//constructor.
function A() {
$B = new B();
$C = new C();
}
I would like to keep everything that is stored in object A, B and C when I reload or refresh my page. The reason I want this, is because I store many variables inside the objects. Is this possible? I tried with new & A(): etc. but each time my page is reloaded from a form everything is gone. Object A is created at the top at the page.
Best regards.
Asbjørn Morell.