Home >php教程 >php手册 >php cookie的操作实现代码(登录)

php cookie的操作实现代码(登录)

WBOY
WBOYOriginal
2016-06-06 20:35:401165browse

cookie 常用于识别用户。cookie 是服务器留在用户计算机中的小文件。每当相同的计算机通过浏览器请求页面时,它同时会发送 cookie。通过 PHP,您能够创建并取回

第一个文件login_frm.php这个是登录窗口
代码

复制代码 代码如下:








用户:





第二个文件login.php这个是处理登录

复制代码 代码如下:


if($_POST['username'] = 'admin')
{
setcookie('haha','gogo');
header("location:index.php");
}
?>


第三个文件index.php再看下效果

复制代码 代码如下:


if($_COOKIE['haha'] == 'gogogo')
{
echo $_COOKIE['haha'];
echo'你设置了cookie';
}
else
{
echo'你没有设置cookie';
}
?>


更基础的可以参考 PHP Cookies ,虚拟主机,网站空间,虚拟主机
Statement:
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