just to add to what HonorGod said,, if you are using browsers with tabs then be careful while testing. closing tab is different from closing browser window.. session remains active even if you close the tab..
Main Topics
Browse All TopicsHi all,
I am creating one cookie in a javascript and one cookie in a php page. I am setting them both with a expire date to '0' i.e of one cookie that's set: setcookie("isQR","57",0,'/
But still i see that when I close the browser and open another page, I can see that the cookies are still there, theoreticallly it should have been deleted after the browser is closed.
But why I am not seeing it happening. Please let me know how to proceed. I want the cookies to get deleted as soon as the browser is closed.
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi Experts,
Please find the javascirpt code and php code for setting cookies in php and javascript page respectively.
After doing some testing i had the following observation:
1. If I open a single IE window and access the page in which cookies are set after I provide my login id and password, and then close it and if I try to open it again, I see that there are no cookies available, means closing the window destroys the cookies ---As per Expectation
2. If I open 2 different IE windows at the same time and then try to access the page in one of the IE windows and then close that particular IE window and If I try to open that page again in IE window I see that the cookies are still there - Not Per Expectation
So, somehow the second IE window is either delaying the deletion of cookies are not allowing them to net get deleted at all!, I am not able to understand this behaviour as the cookie is supposed to be set for a particular domain and the second IE window is not accessing any page in that domain( do I have to explicitly mention the domain also while setting cookie or by default the cookie takes the domain value in which it is created?).
Waiting for your expert suggestion
Thanks
Hi
Please find the setExpiration() code:
fuction setExpiration(CookieLife)
{
var today = new Date();
var expr = new Date(today.getTime() + cookieLife *24*60*60*1000)
return expr.toGMTString();
}
yes, I am opening two windows one by one seperately not as tab, I am using IE 6.0 and I am clicking desktop IE icon for opening IE.
Thanks
Cookies are stored at client browser, so they are not deleted , but you set expiration time.
For a comprehensive cookie tutorial, look at
http://javascriptjournal.c
Please feel free to view source
As per my own experiences with this very same issue awhile back, having any of the browser windows open will retain the session cookies. This behavior is present in both IE and Firefox. At least, it was when I did my tests with it about 3 years ago. It looks like the browser software works on the principle that all windows must be closed for the browsing session to be over.
The only way I found to work around this is to expire the cookie manually, but that is not always possible. You'll need to plan for this behavior in your application.
>> 2. If I open 2 different IE windows at the same time ... Not Per Expectation <<
The comment at http:#a24909989 is correct. Your expectation for the second case is wrong. Cookies will remain as long as ANY window is open in that browser program. Whether tab or its own window doesn't matter. If you think about this it is actually a good design because otherwise the steps you expected would make it so the cookie couldn't be used by another browser window. Definitely not behavior people would want.
If you want you could provide a logout or clear cookie link or button that will destroy the cookie (or at least clear the values). That is a common step to have if you provide a logout option.
Let me know if you have a question about this.
bol
>> I recommend #24909989 <<
I agree. I believe my post at http:#a24943026 adds a bit but the answer is in the comment at http:#a24909989 .
bol
Business Accounts
Answer for Membership
by: HonorGodPosted on 2009-07-14 at 07:18:31ID: 24849758
If you don't specify an expiration time, then a cookie should be a session cookie, and expire when the browser closes.
Please show us the code for your setcookie() routine.