분류 php

Authentication Over HTTP

컨텐츠 정보

  • 조회 1,704 (작성일 )

본문

<?

    if (!isset($_SERVER['PHP_AUTH_USER'])) {

            header("WWW-Authenticate: Basic realm=\"Private Area\"");

            header("HTTP/1.0 401 Unauthorized");

            print "Sorry - you need valid credentials granted access to the private area!\n";

            exit;

    } else {

            print "Welcome to the private area, {$_SERVER['PHP_AUTH_USER']}- you used {$_SERVER['PHP_AUTH_PW']} as your password.";

    }

?>

   

php