Hey guys I have a quick question I have a session and when I do a print_r of the session this is what I get...
Array ( [items] => a:1:{s:2:"1_";a:5:{s:2:"id";s:1:"1";s:4:"name";s:9:"Product 3";s:5:"price";s:5:"20.00";s:6:"option";N;s:3:"qty";N;}} )
I am trying to echo out the price and the name (price = 20.00, name = Product 3)
I've tried..
<?php echo $_SESSION['price']; ?>
and
<?php echo $_SESSION['items']['price']; ?>
nothing works...any ideas?
$_SESSION?