2012年11月29日 星期四

[php][WWW-Authenticate]輸入帳密作權限驗證


在網頁最上方加入:

header('Content-Type: text/html; charset=utf-8');
$user='test';
$pwd='test';
if($_SERVER['PHP_AUTH_USER']==$user AND $_SERVER['PHP_AUTH_PW']==$pwd){
echo "您剛輸入的帳號:".$user.'</br>';
echo "您剛輸入的密碼:".$pwd;
}else{
Header("WWW-Authenticate: Basic realm='login'");
Header("HTTP/1.0 401 Unauthorized");
die('帳號或密碼錯誤');
exit;
}



沒有留言:

張貼留言