vote up 3 vote down star

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?

flag

2 Answers

vote up 9 vote down check

I think that you are after this

$username = $_SERVER['PHP_AUTH_USER'];
$password = $_SERVER['PHP_AUTH_PW'];
link|flag
vote up 0 vote down

I've used this to display the username from basic authentication:

$_SERVER['REMOTE_USER']
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.