I got the following:
$_SESSION["content"] = $contentList->Value;
Where it assigns an array of objects to the session variable... When I then try to access the array it return 60 elements for example that are the size of the array but the objects in the array are blank... None of the properties in them are set.
Try to access:
$contentList = $_SESSION["content"];
foreach($contentList as $currentContent)
{
//......
}
Make sure you have included the classe definition before invoking sesssion_start()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With