PDA

View Full Version : Authentication


filburt1
Sun 2nd Jun '02, 1:39pm
Let's say you get one of those username/password authentication dialog boxes and you enter in your username. Once you've been authenticated how can I get the username in PHP?

Chen
Sun 2nd Jun '02, 1:45pm
$PHP_AUTH_USER (for the username) and $PHP_AUTH_PW (for the password).

filburt1
Sun 2nd Jun '02, 1:48pm
Cheers, it works :D