session_start();?>Accessing Session ElementsA Content Pageif ( is_array( $_SESSION['products'] ) ) { print "Your cart:\n"; foreach ( $_SESSION['products'] as $p ) { print "$p"; } print "";}?>Back to product choice page