I would like iterate on each Object in my session variable. 'items' is of type item which is a class I've created to store book information. I have done a count($_SESSION['items']) which returns a 1 so i thought it should iterate at least once. But no luck. Thanks
foreach ($_SESSION['items'] as $item) {
echo TEST;
$sql = 'SELECT * FROM item WHERE Item_ID = '.$item->Get_Item_ID;
var_dump($sql);
}