Question
First, let's get the security considerations out of the way. I'm using simple authentication under Apache for a one-off, internal use only, non-internet connected lan, php web app.
How can get I the HTTP authenticated user name in PHP?
Answer
I think that you are after this
$username = $_SERVER['PHP_AUTH_USER'];
$password = $_SERVER['PHP_AUTH_PW'];
< br > via < a class="StackLink" href=" http://stackoverflow.com/questions/1417/" >How can I get the authenticated user name under Apache using plain HTTP authentication and PHP?< /a>
0 comments:
Post a Comment