Login verification based on pear auth_PHP tutorial

WBOY
Release: 2016-07-21 15:41:12
Original
1354 people have browsed it

建立一个名为yz.php的页面

复制代码 代码如下:

require_once('Auth.php');
function show_login_form () {
echo '

username:


password:



' ;
}
$options=array('dsn'=>'mysql://root:1@localhost/zs',
'table'=>'users',
'usernamecol'=>'user_name',
'passwordcol'=>'user_passwd',
'cryptType'=>'',
'db_fields'=>'*',
);
$auth=new Auth('DB',$options,'show_login_form');
?>




$auth->start();
if($auth->checkAuth()){
echo "ok";
echo "
";
echo "add";
}else {
echo "error";
}
//$auth->setSessionName($auth->getAuthData('user_name'));
?>



登录后的session传递的页面yzh.php
复制代码 代码如下:

function back(){
echo 'back';
}
require_once('Auth.php');
$auth=new Auth('DB',$option,'back');
$auth->start();
if($auth->checkAuth())
{
echo "this is a session page,welcome ";
echo "{$auth->getUserName()}";
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/321216.htmlTechArticle建立一个名为yz.php的页面 复制代码 代码如下: ?php require_once('Auth.php'); function show_login_form () { echo 'form method="post" action="yz.php" pusername:input ty...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!