Cookie Session Php

session_start();
?>


Accessing Session Elements



A Content Page


if ( is_array( $_SESSION['products'] ) ) {
  print "Your cart:
    \n";
      foreach ( $_SESSION['products'] as $p ) {
        print "
  1. $p
  2. ";
      }
      print "
";
}
?>
Back to product choice page