I am binding the session values in one page -
$_SESSION['order'] = $order;
$_SESSION['total'] = $gtot;
and fetching on next page-
$order = $_SESSION['order'];
$gtot = $_SESSION['total'];
...but in next next page I am getting blank session.
I have started session with session_start();
When I check session values in previous page with print_r($_SESSION['order']); I get the proper values.
session_starton both pages? And are the session IDs on both requests identical (just echosession_id?