最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
二种php用户登录代码(cookie,数据库)
时间:2022-06-24 19:02:27 编辑:袖梨 来源:一聚教程网
下面我们要讲到二种用户登录方法一种是利用window验证加数据库教程密码验证实现登录,后者是利用cookie记录用户信息进行登录,有需要的朋友可以试下。
php教程
function authenticate_user() {
header('WWW-Authenticate: Basic realm="Secret Stash"');
header("HTTP/1.0 401 Unauthorized");
exit;
}if (! isset($_SERVER['PHP_AUTH_USER'])) {
authenticate_user();
} else {
mysql教程_pconnect("localhost","authenticator","secret") or die("Can't connect to database server!");
mysql_select_db("java2s") or die("Can't select authentication database!");$query = "SELECT username, ps教程wd FROM user WHERE username='$_SERVER[PHP_AUTH_USER]' AND pswd=MD5('$_SERVER[PHP_AUTH_PW]')";
$result = mysql_query($query);
// If nothing was found, reprompt the user for the login www.111com.net information.
if (mysql_num_rows($result) == 0) {
authenticate_user();
}
}
?>
利用cookie登录方法
Enter Password
相关文章
- 高清电影下载软件推荐-最新电影下载工具测评 02-12
- Mail.ru官网如何快速登录-Mail.ru官网登录入口在哪 02-12
- 夸克网盘网页版直达-夸克浏览器云存储一键登录 02-12
- yandex免登录直达中文-yandex俄罗斯搜索入口 02-12
- 樱花动漫免费下载最新版本2024-樱花动漫官方APP免费版正版安装入口 02-12
- 秘塔写作猫网页版-秘塔写作猫官网登录 02-12