php怎么从其他页面获取cookie的值显示到另外一个界面
我已经把$_cookie的值保存在变量中了,然后在在页面中输出这个变量就是显示不出来,是怎么回事,求高人指点setcookie('auth',uc_authcode("$...
我已经把$_cookie的值保存在变量中了,然后在在页面中输出这个变量就是显示不出来,是怎么回事,求高人指点
setcookie('auth', uc_authcode("$password\t$discuz_secques\t$uid\t$username", 'ENCODE'), time()+3600*24,'/', 'morp.mcsc.com.cn');
这个user和password的键分别什么??是username和password吗? 展开
setcookie('auth', uc_authcode("$password\t$discuz_secques\t$uid\t$username", 'ENCODE'), time()+3600*24,'/', 'morp.mcsc.com.cn');
这个user和password的键分别什么??是username和password吗? 展开
4个回答
2015-07-10
展开全部
参考代码如下,根据自己的需要修改:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> - </title>
<script type='text/javascript' src="jquery-1.5.2.min.js"></script>
<script type='text/javascript'>
(function($){
//扩展方法,读写cookie
//$.setCookie("a1","abc",999);写
//aaa=$.getCookie("a1");读
$.extend({getCookie:function(sName){
var aCookie=document.cookie.split("; ");
for(var i=0;i<aCookie.length;i++){
var aCrumb=aCookie[i].split("=");
if(sName==aCrumb[0]){return decodeURIComponent(aCrumb[1]);}
}
return '';
},setCookie:function(sName,sValue,sExpires){
var sCookie=sName+"="+encodeURIComponent(sValue);
if(sExpires!=null){sCookie+="; expires="+sExpires;}
document.cookie=sCookie;
},removeCookie:function(sName){
document.cookie=sName+"=; expires=Fri, 31 Dec 1999 23:59:59 GMT;";
}});
})(jQuery)
$(function(){
//需要给cookie设置值的时候这样设置
$.setCookie("isopen","abc",(1*24*3600));
//判断cookie是否为空
_c=$.getCookie("isopen");
if(_c.length){
alert('Cookie的值是:'+_c);
}else{
var popup = window.open('/main/popup', 'popup', 'top=0,left=0,toolbar=0,directories=0,menubar=0,resizable=0,scrollbars=0,width=300,height=350');
if(popup){popup.focus();}
}
});
</script>
</head>
<body>
</body>
</html>
2013-05-02
展开全部
uc_authcode这个是自定义的函数,user/password是你自己定义的,要你自己在写逻辑把它拆出来赋值的,你的这个sercookie只是键是auth,值是uc_authcode("$password\t$discuz_secques\t$uid\t$username。
你还有很多的代码还没有看懂,有些代码是封装的了
你还有很多的代码还没有看懂,有些代码是封装的了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
jiao you jia wo qq
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查看一下cookie域的设置
追问
怎么看??
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询