Cookie隐藏小广告

方式一:在close.php页面上设置COOKIE,

colse.php页面

<?php

setcookie('hide','1');
header('Location: indes.php');

index.php页面 

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	div{
		height:200px;
		width:200px;
		background-color: pink;
	}
    </style>
</head>
<body>
	<?php if(empty($_COOKIE['hide'])||$_COOKIE['hide']!='1'): ?> //如果COOKIE没有设置,还是会显示
	<div calss='ad'>
		<a  href="close.php">不再显示</a>
	</div>
    <?php endif ?>
	
</body>
</html>

 

方式二:因为点击index.php回车键访问该页面,和点击a连接都是访问的同一个页面,所以当想要关闭的时候我们要让浏览器能够区分,所有通过传递参数的方式,当收到这个参数的时候就设置一个COOKIE

 

<?php

if(isset($_GET['action'])&&$_GET['action']=='hide'){
	setcookie('hide2','2');
    $_COOKIE['hide2'];
}

?>

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	div{
		height:200px;
		width: 200px;
		background-color: pink;
	}
    </style>
</head>
<body>
	<?php if(empty($_COOKIE['hide2'])||$_COOKIE['hide2']!=='2'):?>
	<div>
		<a href="index2.php?action=hide">不再显示</a>
	</div>
    <?php endif ?>
</body>
</html>

 

posted @   mysunshine_SZZ  阅读(178)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· 程序员常用高效实用工具推荐,办公效率提升利器!
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 【译】WinForms:分析一下(我用 Visual Basic 写的)
点击右上角即可分享
微信分享提示