This is a discussion on how to reset the windows authentication within the PHP Language forums, part of the PHP Programming Forums category; I made an intranet website by php, webserver IIS on windows 2000. To manage users I used the windows authentication. ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I made an intranet website by php, webserver IIS on windows 2000.
To manage users I used the windows authentication. Now I have to create logout.php that has to destroy sessions and windows authentication too, to allow the login to another user from the same pc (for example). I can destroy sessions variables by: session_start(); $_SESSION = array(); session_destroy(); but how can I destroy or reset the windows authentication? My problem is that I'm not able to display the window with user name, password and domain to change the window user. :-( |