Sorry - this is probably a basic question...
I am trying to use $_SESSION variables and want to use them to display data and store variables for later processing across several pages.
I can pass a variable from an input form field 'company" to a session by using $company = $_SESSION['company'] ; and $company displays fine on the next page. But it will not display on any page after that. What did I miss?
I start each page with session_start() and also for debugging I display session_id() and it remains the same across each page.
Any help would be much appreciated. Thanks.