我有以下两个链接:
<a href="index.php?showDesktop=true">Show Desktop</a>
<a href="index.php?showMobile=true">Show Mobile</a>
我想要做的是,如果单击 showDesktop 查询,则创建一个名为 showDesktop 的 cookie 并删除 cookie showMobile,反之亦然。到目前为止,我已经尝试了以下方法,但认为我做错了。任何人都可以帮助我按照建议进行这项工作。
if($_GET['showDesktop']) {
$_COOKIE('showDesktop', 'yes');
$_COOKIE('showMobile', null);
}
else if($_GET['showMobile']) {
$_COOKIE('showDesktop', null);
$_COOKIE('showMobile', 'yes');
}