Wednesday, April 08, 2009

Warning: Unknown: Node no longer exists in Unknown on line 0 solution

I got the following error on my php pages using SimpleXMLElement and $_SESSION function.

The solution is to add a session_destroy() function at the end of any file which contains session_start() and it should work!

1 comment:

Anonymous said...

Objects can not be stored in $_SESSION variables. Cast the variable as (string) should solve the problem.

$_SESSION['name'] = (string)$person[0]->firstName;

Hope this helps :)