使用AUTH_HTTP,可以方便地建立基於HTTP驗證的程式,而且可以自由地指定使用者資料表,操作簡單易用...
例子:
<?php
require_once("Auth/HTTP.php");
$options = array(
'dsn'=>"mysql://root:@localhost/test", //資料庫連線字符串
'table'=>"test_http", //使用者表
'usernamecol'=>"name", // 使用者名字段
'passwordcol'=>"passwd", //使用者密碼字段
'cryptType'=>"md5", // 密碼加密碼方式
'db_fields'=>"*",
);
$a = new Auth_HTTP("DB", $options);
$a->setRealm('yourrealm'); // realm name
$a->setCancelText('Error 401'); // 驗證失敗時的提示訊息
$a->start(); // starting the authentication process
if($a->getAuth()) // 成功
{
echo "Hello $a->username welcome to my secret page";
echo $a->getAuthData('userid'); // 取得其它字段
echo $a->getAuthData('telephone'); //
echo $a->getAuthData('email');
//print_r($a);
};
?>
在要驗證的程式前加上此程式即可..