Hi There, I have a password-protected folder and it of course pops open a window in the browser asking for the username and password.
What I need to know is how to unset that login. I have done this code on a page after the login:
echo '<pre>';
print_r($GLOBALS);
and in the process I see two variables which are not there before
[HTTP_SERVER_VARS]=>array(
[PHP_AUTH_USER] => cxpm084
[PHP_AUTH_PW] => ******
)
OK, so these variables are present, how do I unset them from any future page?
Thank you, I know phpMyAdmin does it and so it must be possible.
Thanks,
Samuel
[/code]