In books and tutorials related with Web-programming written that cookies expire when user close browser. So I cant understand why after closing browser(Opera) I can see the
Cookies are of two different types:
Read http://en.wikipedia.org/wiki/HTTP_cookie
There are two major kinds of cookies. Session and Persistent cookies.
Session cookies are usually removed when you close the browser. Session cookies are usually used for keeping track of login information, shopping carts etc.
Persistent cookies are also called tracking cookies. They are often used by advertisers to track what ads you have already watched. It is also used for some web pages to remember information about you, such as automatic login and auto-filling forms with commonly used details (such as your login name). Persistent cookies are removed when max age or expiration date have been reached.
More information regarding different cookie types can be found on Wikipedia - HTTP cookie.