Dear All,
I want to make Login Page with http_auth using following code.
header('WWW-Authenticate: Basic realm="Restricted Zone"');
header('HTTP/1.0 401 Unauthorized');
After successfully Login, do necessary work within Restricted Zone and must be Logout.
If I want to re-login from same browser, it won't display login dialog box and automatically goes to restricted zone.
How to correct this problem ? Please help me.