So I have a large 2d array that i serialize and base64_encode and throw into a database. On a different page I pull the array out and when I base64_decode the serialized array i can echo it out and it definitely looks valid.
However, if i try to unserialize(base64_decode($serializedArray)) It just throws the same error to the point of nearly crashing firefox.
The error is:
Warning: unserialize() [function.unserialize]: Node no longer exists in /var/www/dev/wc_paul/inc/analyzerTester.php on line 24
I would include the entire serialized array that I echo out but last time I tried that on this form it crashed my firefox.
Does anyone have any idea why this might be happening?
Thanks.