当前位置:首页 > PHP教程 > php应用 > 列表

PHP网页安全认证的实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-09 14:21:37 浏览: 评论:0 

这篇文章主要介绍了PHP网页安全认证的实例详解的相关资料,这里提供了两种实现方法,一种基于数据库另一种不基于数据库的方法,希望通过本能帮助到大家,需要的朋友可以参考下

PHP网页安全认证的实例详解

不基于数据库:

  1. <?php 
  2.     //unset($_SERVER['PHP_AUTH_USER']); 
  3.     $strAuthUser$_SERVER['PHP_AUTH_USER'];       
  4.     $strAuthPass$_SERVER['PHP_AUTH_PW']; 
  5.  
  6.  if (! ($strAuthUser == "a" && $strAuthPass == "a")) { 
  7.   header('WWW-Authenticate: Basic realm="wly"'); 
  8.   header('HTTP/1.0 401 Unauthorized'); 
  9.   echo "用户验证!!"
  10.   exit
  11.  } else { 
  12.   echo "验证通过"
  13.     
  14.   header("location:http://www.baidu.com"); 
  15.   //unset($_SERVER['PHP_AUTH_USER']);   
  16.  } 
  17. ?> 

基于数据库:

  1. <?php 
  2.   function authenticate_user() { 
  3.     header('WWW-Authenticate: Basic realm="Secret Stash"'); 
  4.    header("HTTP/1.0 401 Unauthorized"); 
  5.     exit
  6.   } 
  7.    
  8.   if (! isset($_SERVER['PHP_AUTH_USER'])) { 
  9.     authenticate_user(); 
  10.   } else { 
  11.     mysql_pconnect("localhost","authenticator","secret"or die("Can't connect to database server!"); 
  12.     mysql_select_db("java2s"or die("Can't select authentication database!"); 
  13.    
  14.    $query = "SELECT username, pswd FROM user WHERE username='$_SERVER[PHP_AUTH_USER]' AND pswd=MD5('$_SERVER[PHP_AUTH_PW]')"
  15.    
  16.     $result = mysql_query($query); 
  17.    
  18.     // If nothing was found, reprompt the user for the login information. 
  19.     if (mysql_num_rows($result) == 0) { 
  20.      authenticate_user(); 
  21.     } 
  22.   } 
  23.  ?>

Tags: PHP网页安全认证

分享到: