I have seen references to this problems and i remember discussing it w hile back but I cannot find a valid answer..
If header(Location....)
is called after some data has been set with $SESSION['data'] = .....
The session data will not be set.
If the redirect to page is called manually, it works fine. Passing the session id in the url has not effect. Watching the session file, It seems that the $SESSION array is not written to the file until the page expires even though teh array data is availabl within the page. If the header("location is called, nothing gets written to teh session files so this has nothing to do with passing the session id along.
I vaguely remember there was a solution to this but I cannot find it. Any ideas?
Joshua