PHP Sessions with AJAX

I have a form that is submitted via ajax that can take up to a minute to complete. (I don’t care for receiving the response)

But the problem is, that since threads are single threaded, I cannot access any other pages that use sessions from the same browser. Is there a way around this?

Perhaps it’s possible to have teh form be submitted in a separate window? I’m not familiar with AJAX, but you should be able to access the page if the timeconsuming request is dealt with in another frame (it’s a way to simulate multithreading in a webbased environment).

Sponsor our Newsletter | Privacy Policy | Terms of Service