Session variables still seem to be unavailable.
How can I access $_SESSION set by the child?
Dave Baldwin
You have to add it to ALL pages, not just the parent. It has to be identified on each page that is loaded. That includes the child page.
The PHP page on the server only 'sees' the session during the time it is processing the PHP code. When it gets to the browser, the server is already done with the session for that page. It's not a 'sticky' kind of thing.
Open in new window
Session variables still seem to be unavailable.
How can I access $_SESSION set by the child?