I have an application (Developed in DRUPAL -> php)
Here my problem is ,
I want to terminate the session of application as you close the browser.
How to do this?
because PHP sessions work exactly like ordinary cookies!
The server doesn't know which instance is being using.
So I want something like-
When the user returns to the site or if they try to perform any action then effect should be asking user to logged-in.
What should I do on server side?
coz client side solutions will not work for my application
:(