php cookie的操作实现代码(登录)
程序员文章站
2022-10-05 22:22:31
第一个文件login_frm.php这个是登录窗口 代码 复制代码 代码如下:
第一个文件login_frm.php这个是登录窗口
代码
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf8" />
</head>
<body>
<form method="post" action="login.php">
用户:<input type="text" name="username" />
<input type="submit" value="提交" />
</form>
</body>
</html>
第二个文件login.php这个是处理登录
<?php
if($_post['username'] = 'admin')
{
setcookie('haha','gogo');
header("location:index.php");
}
?>
第三个文件index.php再看下效果
<?php
if($_cookie['haha'] == 'gogogo')
{
echo $_cookie['haha'];
echo'你设置了cookie';
}
else
{
echo'你没有设置cookie';
}
?>
更基础的可以参考 php cookies
代码
复制代码 代码如下:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf8" />
</head>
<body>
<form method="post" action="login.php">
用户:<input type="text" name="username" />
<input type="submit" value="提交" />
</form>
</body>
</html>
第二个文件login.php这个是处理登录
复制代码 代码如下:
<?php
if($_post['username'] = 'admin')
{
setcookie('haha','gogo');
header("location:index.php");
}
?>
第三个文件index.php再看下效果
复制代码 代码如下:
<?php
if($_cookie['haha'] == 'gogogo')
{
echo $_cookie['haha'];
echo'你设置了cookie';
}
else
{
echo'你没有设置cookie';
}
?>
更基础的可以参考 php cookies
上一篇: php目录操作函数之获取目录与文件的类型
下一篇: Linux tar命令使用列子第1/2页