I had this same problem and it constantly broke our whole site.
So I tried a different approach and this has been working great:

Instead of <? header ("Location: sometoherpage.php"); ?>

Consider:  <? include "someotherpage.php"; ?>

It works flawlessly, always, and maintains your session.

Because my site ( a shopping cart/store ) is so dependent on sessions, I 
stopped using redirects and "Location: " functions entirely.

We just use <? include "..." ?> now and all sessions work 
wonderfully.  Even without cookies, etc.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to